SARIF support moved from GSA to separate features in PRs 659 686 and 698 #1094
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
name: CI/CD | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- "feature-*" | |
- "release-*" | |
pull_request: | |
branches: | |
- main | |
- develop | |
- "feature-*" | |
- "release-*" | |
workflow_dispatch: | |
merge_group: | |
jobs: | |
validate-repo-markdown: | |
uses: ./.github/workflows/workflow-validate-repo-markdown.yml | |
validate-website: | |
if: github.event_name == 'pull_request' | |
uses: ./.github/workflows/workflow-generate-website.yml | |
with: | |
commit_resources: false | |
push-website: | |
if: github.event_name == 'push' | |
uses: ./.github/workflows/workflow-generate-website.yml | |
with: | |
commit_resources: true | |
secrets: | |
COMMIT_TOKEN: ${{ secrets.COMMIT_TOKEN }} |