fix(commit-lint): support merge_group and avoid merge commits #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# yamllint disable rule:line-length | |
name: Fossa-oss PR scan (jenkins) | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.event.repository.name }}-fossa-scanning-oss-zuul-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
fossa: | |
runs-on: | |
group: infra1-runners-arc | |
labels: runners-small | |
permissions: | |
contents: read | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Call Jenkins trigger | |
id: call-jenkins | |
uses: gooddata/github-actions-public/jenkins/trigger@master | |
with: | |
server: ${{ secrets.JENKINS_ADDRESS }} | |
folder: compliance | |
job-name: "${{ github.event.repository.name }}-fossa-scanning-oss-zuul" | |
vault-url: ${{ secrets.VAULT_ADDRESS }} | |
params: |- | |
{ | |
"GH_BRANCH":"${{ github.base_ref }}", | |
"GH_REF":"${{ github.ref }}", | |
"GH_COMMIT":"${{ github.event.pull_request.head.sha }}", | |
"GH_URL":"[email protected]:", | |
"GH_CHANGE":"${{ github.event.pull_request.number }}", | |
"GH_PROJECT":"${{ github.repository }}", | |
"GH_PR_NUMBER":"${{ github.event.pull_request.number }}", | |
"BUILD_BY_GITHUB":"true", | |
"GH_PIPELINE":"gate" | |
} |