We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf8089a commit 815ca46Copy full SHA for 815ca46
1 file changed
.github/workflows/build.yml
@@ -2,9 +2,9 @@ name: Build
2
3
on:
4
push:
5
- branches: [ "master" ]
+ branches: [ "master", "better_workflow" ]
6
pull_request:
7
8
9
jobs:
10
build:
@@ -483,7 +483,7 @@ jobs:
483
lint:
484
name: Lint
485
runs-on: ubuntu-latest
486
- if: github.ref == 'refs/heads/master'
+ if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/better_workflow'
487
488
steps:
489
- name: Checkout code
0 commit comments