Skip to content

Commit

Permalink
Merge pull request #1 from philips-emr/feature/406888
Browse files Browse the repository at this point in the history
feature(security): add script on-demand type node [3187326]
  • Loading branch information
hugoharoldo authored Mar 27, 2024
2 parents a6eb77d + 938acc2 commit a060469
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/on-demand-blackduck.yml
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
21 changes: 21 additions & 0 deletions .github/workflows/on-demand-fortify.yml
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

0 comments on commit a060469

Please sign in to comment.