chore: generalize how ads are created #740
Workflow file for this run
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
name: "Semgrep App" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- prod | |
paths: | |
- .github/workflows/semgrep.yml | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
analyze: | |
name: Scan | |
runs-on: ubuntu-latest | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
# Fetch project source | |
- uses: actions/checkout@v3 | |
- uses: returntocorp/semgrep-action@v1 | |
with: | |
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }} |