GTI Solution: Added CCF for Vulnerability #10443
Workflow file for this run
This file contains hidden or 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
| name: check that the version was updated | |
| # Controls when the workflow will run | |
| on: | |
| pull_request: | |
| paths: | |
| - "Detection**" | |
| - "Solutions/**/Analytic Rules/**" | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| check-version-of-detection-was-updated: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # check out and run the script | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v1 | |
| - name: Check that template version was updated | |
| run: bash .script/checkThatTemplatesVersionWasChanged.sh |