-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from onemedical/SEC-1417/pr-security-workflow
Add PR Security pipeline workflow
- Loading branch information
Showing
1 changed file
with
32 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,32 @@ | ||
--- | ||
# onemedical/<repo>/.github/workflows/pr-security.yaml | ||
# | ||
# This is the workflow for distribution to repositories across the organization. | ||
# It will call the reusable PR security workflow, and run scans against each PR. | ||
name: PR Security | ||
|
||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request: | ||
branches: [main, master] | ||
|
||
|
||
permissions: | ||
# Required for workflows in private repositories. | ||
contents: read | ||
|
||
# Required for SARIF results upload to GHAS. | ||
security-events: write | ||
actions: read | ||
|
||
|
||
jobs: | ||
# Run the reusable workflow. | ||
run-workflow: | ||
name: Run Workflow | ||
# yamllint disable-line rule:line-length | ||
uses: onemedical/github-reusable-workflows/.github/workflows/reusable-pr-security.yaml@main | ||
# The detect-secrets tool is used in some repositories, and generates false | ||
# positives like the one below. Add comment to ignore. | ||
secrets: inherit # pragma: allowlist secret |