Skip to content

Commit 573231e

Browse files
committed
Trigger workflows on support/5.x.x
1 parent a739025 commit 573231e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: "Checks the SDK only using APIs from the targeted API level"
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [ dev ]
6+
branches: [dev, support/5.x.x]
77
pull_request:
8-
branches: [ dev ]
8+
branches: [dev, support/5.x.x]
99

1010
jobs:
1111
lint-api-level:

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ dev ]
16+
branches: [dev, support/5.x.x]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
19-
branches: [ dev ]
19+
branches: [dev, support/5.x.x]
2020
schedule:
2121
- cron: '0 1 * * 4'
2222
workflow_dispatch:

.github/workflows/conflicting-pr-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ name: PullRequestConflicting
66
# events but only for the master branch
77
on:
88
push:
9-
branches: [ master, dev ]
9+
branches: [master, dev, support/5.x.x]
1010
pull_request:
1111
types: [synchronize]
12-
branches: [ master, dev ]
12+
branches: [master, dev, support/5.x.x]
1313

1414
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1515
jobs:

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Gradle Build and Compare Package
22

33
on:
44
push:
5-
branches: [ dev ]
5+
branches: [dev, support/5.x.x]
66
pull_request:
7-
branches: [ dev ]
7+
branches: [dev, support/5.x.x]
88
paths-ignore:
99
- '.gradle/wrapper'
1010
- '.gitignore'

.github/workflows/preview-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Maven Preview/Release and Github Release
22

33
on:
44
push:
5-
branches: [ dev ]
5+
branches: [dev, support/5.x.x]
66
paths-ignore:
77
- '.gradle/wrapper'
88
- '.gitignore'
@@ -49,7 +49,7 @@ jobs:
4949
run: ./gradlew $PREVIEW_TASK
5050

5151
maven_Release:
52-
if: ${{ github.ref == 'refs/heads/dev' }}
52+
if: ${{ github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/support/5.x.x' }}
5353
environment:
5454
name: maven_central_release
5555
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)