From d1a5031722da47da554b3f0f876afad0b181d080 Mon Sep 17 00:00:00 2001 From: Kiran Thumma <167153338+kiran-thumma@users.noreply.github.com> Date: Wed, 29 May 2024 07:41:59 -0700 Subject: [PATCH] adding keyword scan (#874) * adding keyword scan * update * update * update * checking on fix * check * check * check * check * update [ROCm/rocprofiler-sdk commit: ba14e748ca4e58c225961d01aa5db68529d28901] --- .../rocprofiler-sdk/.github/workflows/kws.yml | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 projects/rocprofiler-sdk/.github/workflows/kws.yml diff --git a/projects/rocprofiler-sdk/.github/workflows/kws.yml b/projects/rocprofiler-sdk/.github/workflows/kws.yml new file mode 100644 index 0000000000..e9efc03969 --- /dev/null +++ b/projects/rocprofiler-sdk/.github/workflows/kws.yml @@ -0,0 +1,34 @@ +###################################################################################### +# 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: ROCm/rocm-reusable-workflows/.github/workflows/common.yaml@main + secrets: inherit + + # Add your repo specific workflows (if any) below this line, edit nothing above this line. + other-job: + runs-on: ubuntu-latest + steps: + - name: KWS SCAN check + run: echo "End of repo specific workflow"