We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e5b15 commit cc75027Copy full SHA for cc75027
.github/workflows/CI.yml
@@ -8,8 +8,14 @@ name: CI
8
9
# Controls when the action will run.
10
on:
11
- # Triggers the workflow on push or manual dispatch
+ # Triggers the workflow on push or manual dispatch, but not on tags.
12
+ # This is so there are not duplicate CI runs when the periodic
13
+ # specification updates are tagged.
14
push:
15
+ branches:
16
+ - '*'
17
+ tags-ignore:
18
19
# Allows you to run this workflow manually from the Actions tab
20
workflow_dispatch:
21
# When a pull request is opened from a local branch or fork
0 commit comments