-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rakshitha650 <[email protected]>
- Loading branch information
1 parent
215ef75
commit 996f25c
Showing
1 changed file
with
27 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,27 @@ | ||
name: Dependency Check | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
MESSAGE: | ||
description: 'Triggered For Dependency Check' | ||
required: false | ||
default: 'dependency check' | ||
SKIP_DEPENDENCIES: | ||
description: 'List of dependencies to be skipped' | ||
required: false | ||
default: '' | ||
DEPENDENCY_VERSIONS: | ||
description: 'Specify versions for specific dependencies' | ||
required: false | ||
default: '' | ||
|
||
jobs: | ||
dependency-check: | ||
uses: mosip/kattu/.github/workflows/dev-check.yml@master | ||
with: | ||
MESSAGE: ${{ inputs.MESSAGE }} | ||
SKIP_DEPENDENCIES: ${{ inputs.SKIP_DEPENDENCIES }} | ||
DEPENDENCY_VERSIONS: ${{ inputs.DEPENDENCY_VERSIONS }} | ||
secrets: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} |