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

feature(security): add script on-demand type node [3187326] #1

Merged
merged 4 commits into from
Mar 27, 2024
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
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