Skip to content

Commit aecb03a

Browse files
committed
Add 0.x branches to GH workflows
Signed-off-by: onobc <chris.bono@gmail.com>
1 parent 5b1ab08 commit aecb03a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
branches:
66
- 'main'
7+
- '0.x'
78
paths-ignore:
89
- '.github/**'
910

.github/workflows/codeql.yml

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

1414
on:
1515
push:
16-
branches: [ "main" ]
16+
branches: [ "main", "0.x" ]
1717
pull_request:
18-
branches: [ "main" ]
18+
branches: [ "main", "0.x" ]
1919
schedule:
2020
- cron: '22 20 * * 2'
2121

.github/workflows/deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name: Deploy Jars
44
on:
55
push:
6-
branches: [ main ]
6+
branches: [ main, 0.x ]
77

88
jobs:
99
build:
@@ -34,4 +34,3 @@ jobs:
3434
echo "${signing_key}" > private.asc
3535
gpg --import --batch --no-tty private.asc
3636
./mvnw -B deploy -s .mvn/settings.xml
37-

0 commit comments

Comments
 (0)