ci: add main ci jobs #15
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: pr | ||
#permissions: {} #TODO: reactivate for non-private | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- dev | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
ci: | ||
uses: ./.github/workflows/.reusable-ci.yml | ||
Check failure on line 17 in .github/workflows/pr.yml GitHub Actions / .github/workflows/pr.ymlInvalid workflow file
|
||
# permissions: #TODO: adjust for non-private | ||
secrets: inherit | ||
with: | ||
#TODO: adjust for non private | ||
skip_build: 'none' | ||
skip_compliance_checks: 'none' | ||
skip_unit_tests: 'all' | ||
skip_sast: 'none' | ||
skip_sca: 'none' | ||
skip_docs: 'non-required' | ||
skip_integration_tests: 'none' | ||
output_type: 'sarif' |