We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa2137 commit 1db90a4Copy full SHA for 1db90a4
.github/workflows/ci_tests.yml
@@ -9,7 +9,11 @@ on:
9
branches:
10
- main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed.
11
tags: # run CI if specific tags are pushed
12
- - '[0-9]+.[0-9]+.[0-9]+[a-z0-9]*'
+ - '[0-9]+.[0-9]+.[0-9]+[a-z0-9]*' # pre-releases -- note that brackets only
13
+ # match single character, and that * does
14
+ # not mean zero or more of previous
15
+ # character.
16
+ - '[0-9]+.[0-9]+.[0-9]+' # actual releases.
17
pull_request:
18
branches: # only build on PRs against 'main' if you need to further limit when CI is run.
19
- main
0 commit comments