From 4206250e611d18122b54003d8d0ce4c0f2df2fc1 Mon Sep 17 00:00:00 2001 From: "Mallya, Ameya Keshava" Date: Wed, 15 Jan 2025 11:11:01 -0800 Subject: [PATCH] Added KWS check (#88) [ROCm/rdc commit: cadbf69b45c6b4dfcaac12e6819855951bf01f48] --- projects/rdc/.github/workflows/kws-caller.yml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 projects/rdc/.github/workflows/kws-caller.yml diff --git a/projects/rdc/.github/workflows/kws-caller.yml b/projects/rdc/.github/workflows/kws-caller.yml new file mode 100644 index 0000000000..f2a515e5b0 --- /dev/null +++ b/projects/rdc/.github/workflows/kws-caller.yml @@ -0,0 +1,29 @@ +###################################################################################### +# Name : Rocm Validation Suite +# Developed by : kiran.thumma@amd.com, gajeambi@amd.com +# Maintained by : kiran.thumma@amd.com, gajendrad.ambi@amd.com +# Version : 0.5 +# Description : This workflow will eventually call the central rocm reusable workflow. +# So developers should not edit/Modify this file +# Donot add it into .*ignore file# +# Docs : +###################################################################################### +name: Rocm Validation Suite KWS +on: + push: + branches: [amd-staging] + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: + +jobs: + kws: + # runs only for PR events. Add 3 environment variables in repo's settings + # - PROJECT_NAME : your project's name in keywordsearch.amd.com + # - KEYWORD_SCAN_USER : your username in keywordsearch.amd.com to access the above project + # - KEYWORD_SCAN_PASSWORD : your password in keywordsearch.amd.com to access the above project + if: ${{ github.event_name == 'pull_request' }} + uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/kws.yml@mainline + secrets: inherit + with: + pr_number: ${{github.event.pull_request.number}}