Enable sonarqube scan #22
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
name: "CI Pipeline" | ||
on: | ||
push: | ||
branches: [main] | ||
paths-ignore: | ||
- "**/*.md" | ||
pull_request: | ||
branches: [main] | ||
# Allow to run this workflow manually | ||
workflow_dispatch: | ||
jobs: | ||
############################################## | ||
# jobs dispatched to separate workflow files # | ||
############################################## | ||
frontend-jobs: | ||
uses: ./.github/workflows/frontend-jobs.yml | ||
Check failure on line 19 in .github/workflows/pipeline.yml GitHub Actions / CI PipelineInvalid workflow file
|
||
secrets: inherit | ||
security-jobs: | ||
uses: ./.github/workflows/security-jobs.yml | ||
secrets: inherit # so the backend workflow can access "secrets.SLACK_WEBHOOK_URL" and others | ||
permissions: | ||
contents: read | ||
security-events: write # trivy scan needs this |