Update DomainEntity_EmailUrlInfo.yaml #7263
Workflow file for this run
This file contains 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: | |
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 |