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 83f4a7f commit e54b270Copy full SHA for e54b270
.github/workflows/build.yml
@@ -5,8 +5,11 @@ on:
5
# Triggers the workflow on push or pull request
6
push:
7
branches:
8
- - '!dev'
9
- - '!main'
+ - '*' # matches every branch that doesn't contain a '/'
+ - '*/*' # matches every branch containing a single '/'
10
+ - '**' # matches every branch
11
+ - '!dev' # excludes dev
12
+ - '!main' # excludes main
13
pull_request:
14
15
# Allows you to run this workflow manually from the Actions tab
0 commit comments