-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b903b2
commit 3847158
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# stub to call common GitHub Action (GA) as part of Continuous Integration (CI) Pull Request process checks for main branch | ||
# inputs are described in the <org>/common-github-actions/<GA.yml> with same name as this stub | ||
|
||
name: ci-main-pull-request-checks | ||
|
||
on: | ||
pull_request: | ||
branches: [ main, release/** ] | ||
push: | ||
branches: [ main, release/** ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
call-ci-main-pr-check-pipeline: | ||
uses: chef/common-github-actions/.github/workflows/ci-main-pull-request-checks.yml@main | ||
secrets: inherit | ||
with: # named inputs for the GA | ||
language: 'Ruby' | ||
visibility: ${{ github.event.repository.visibility }} # optional, defaults to public | ||
skip-trufflehog: false | ||
skip-sonarqube: false |