Skip to content

Commit

Permalink
Add GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-simmons-progress committed Mar 3, 2025
1 parent 3b903b2 commit 3847158
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci-main-pull-request-checks.yml
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

0 comments on commit 3847158

Please sign in to comment.