From 1f0a0397e88cce9102c55fd815e403c1930ed8ca Mon Sep 17 00:00:00 2001 From: Rakshith650 Date: Thu, 7 Dec 2023 12:23:13 +0530 Subject: [PATCH] [MOSIP-29967] Added dev-check.yml Signed-off-by: Rakshitha650 --- .github/workflows/dev-check.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/dev-check.yml diff --git a/.github/workflows/dev-check.yml b/.github/workflows/dev-check.yml new file mode 100644 index 00000000..bbfdb319 --- /dev/null +++ b/.github/workflows/dev-check.yml @@ -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 }} \ No newline at end of file