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.
2 parents 08e6e13 + c0afd56 commit 7922847Copy full SHA for 7922847
.github/workflows/main.yml
@@ -1,12 +1,10 @@
1
name: Build and Deploy Snapshot
2
on:
3
- push:
4
- branches: [2.*]
+ push:
5
paths-ignore:
6
- "README.md"
7
- "release-notes/*"
8
- pull_request:
9
+ pull_request:
10
11
12
@@ -75,8 +73,8 @@ jobs:
75
73
trigger-dep-build-v2:
76
74
name: Trigger v2 dep builds
77
needs: [build]
78
- # Only for pushes to default branch
79
- if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
+ # Only for pushes to 2.x (next 2.x being developed) branch
+ if: ${{ github.event_name == 'push' && github.ref_name == '2.x' }}
80
uses: ./.github/workflows/trigger_dep_builds_v2.yml
81
secrets:
82
token: ${{ secrets.REPO_DISPATCH }}
0 commit comments