Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop running fortify at scheduled time every day. #798

Merged
merged 2 commits into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:
Expand Down
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:
Expand Down