a2dc4ec041
* Update formatting.yml * Update codeql.yml * Update docs.yml * Update generate_afar.yml * Update python.yml * Update rerun.yml * Update restrictions.yml * Update rocm_release_compatibility.yml * Update scan.yaml * Update sync-mainline.yaml * Update sync-staging.yaml
27 lines
545 B
YAML
27 lines
545 B
YAML
name: Keywords Scan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches: [ amd-staging, amd-mainline ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
keyword-search:
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
runner: [rocprof-azure-docker-emu-runner-set]
|
|
|
|
runs-on: ${{ matrix.runner }}
|
|
env:
|
|
KEYWORDS: ${{ vars.KEYWORDS }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: find-keywords
|
|
shell: bash
|
|
run: ./source/scripts/scan-script.sh
|