Skip to content

Commit

Permalink
Automated: Add outsanding PRs github action
Browse files Browse the repository at this point in the history
  • Loading branch information
fishbrain-terraform[bot] authored Oct 12, 2023
1 parent 1a6c3e7 commit 56a658f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/outstanding-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
######################################################################################################################
# THIS FILE IS AUTOGENERATED. SEE https://github.com/fishbrain/terraform/blob/master/repositories/semgrep.tf #
######################################################################################################################
name: Semgrep
on:
pull_request: {}
schedule:
- cron: '0 2 * * DAY_OF_THE_WEEK' # Once a week at 2am.

jobs:
semgrep:
name: Scan
runs-on: ubuntu-latest
timeout-minutes: 15 # There's been issues with some runs hanging. This times out after 15 minutes instead of the default 360.
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}

0 comments on commit 56a658f

Please sign in to comment.