Skip to content

Commit

Permalink
Stop running fortify at scheduled time every day. (#798)
Browse files Browse the repository at this point in the history
* Stop running fortify at scheduled time every day.
It is enough to run it on each PR.

* Run FoD SAST on each pull request and on merge to master, beta and release.
claudiamurialdo authored Apr 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent bbbb167 commit 10d6786
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/fortify-net-framework.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@

name: Fortify on Demand Scan (.NET Framework)

# TODO: Customize trigger events based on your DevSecOps processes and typical FoD SAST scan time
# Run FoD SAST on each pull request and on merge to master, beta and release.
on:
workflow_dispatch:
pull_request:
branches:
- 'master'
- 'release-*'
push:
branches:
- 'master'
- 'beta'
- 'release-*'
#Run at the end of every day
schedule:
- cron: '0 0 * * *'

jobs:
FoD-SAST-Scan:
9 changes: 5 additions & 4 deletions .github/workflows/fortify.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@

name: Fortify on Demand Scan (.NET)

# TODO: Customize trigger events based on your DevSecOps processes and typical FoD SAST scan time
# Run FoD SAST on each pull request and on merge to master, beta and release.
on:
workflow_dispatch:
pull_request:
branches:
- 'master'
- 'release-*'
push:
branches:
- 'master'
- 'beta'
- 'release-*'
#Run at the end of every day
schedule:
- cron: '0 0 * * *'

jobs:
FoD-SAST-Scan:

0 comments on commit 10d6786

Please sign in to comment.