Skip to content

Commit

Permalink
ci: add workflow triggered by merge to main (#37)
Browse files Browse the repository at this point in the history
Release-As: 1.0.1
  • Loading branch information
netr0m committed Jul 1, 2024
1 parent 67f357d commit 4b24cf9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/on-push-main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Push to main
on:
push:
branches: [main]

jobs:
snyk:
name: Scan dependencies
uses: ./.github/workflows/snyk.yaml
with:
severity-treshold: low
secrets: inherit
permissions:
contents: read
security-events: write

semgrep:
name: Scan source code
uses: ./.github/workflows/semgrep.yaml
secrets: inherit
permissions:
contents: read
security-events: write

release-please:
name: Create release-please PR
uses: ./.github/workflows/release-please.yaml
secrets: inherit
permissions:
contents: write
pull-requests: write

0 comments on commit 4b24cf9

Please sign in to comment.