forked from malko/date-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from philips-emr/feature/406888
feature(security): add script on-demand type node [3187326]
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 'BlackDuck On-Demand Scan' | ||
|
||
run-name: 'BlackDuck Scan on (#${{inputs.branch}}) branch' | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
type: string | ||
description: Branch | ||
required: true | ||
|
||
jobs: | ||
black_duck_scan: | ||
name: 'BlackDuck Scan' | ||
uses: philips-internal/emr-devops-actions/.github/workflows/reusable_blackduck_node_scan.yml@develop | ||
with: | ||
repository_name: 'date-functions' | ||
project_name: 'EMR-CM-TECHNOLOGY' | ||
repository_url: 'philips-internal/date-functions' | ||
branch: ${{inputs.branch}} | ||
runner: 'philips-emr-bnu' | ||
secrets: inherit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Fortify On-Demand Scan' | ||
|
||
run-name: 'Fortify Scan on (#${{inputs.branch}}) branch' | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
type: string | ||
description: Branch | ||
required: true | ||
jobs: | ||
fortify_scan: | ||
name: 'Fortify Scan' | ||
uses: philips-internal/emr-devops-actions/.github/workflows/reusable_fortify_node_scan.yml@develop | ||
with: | ||
repository_name: 'date-functions' | ||
application: 'EMR-CM-TECHNOLOGY' | ||
repository_url: 'philips-internal/date-functions' | ||
branch: ${{inputs.branch}} | ||
secrets: inherit |