Skip to content
This repository was archived by the owner on Apr 7, 2024. It is now read-only.

Commit 7f57bc1

Browse files
committed
chore: enable workflows for release branches
Signed-off-by: Sylvia Lei <[email protected]>
1 parent 9299052 commit 7f57bc1

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.github/workflows/build.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ name: build
1515

1616
on:
1717
push:
18-
branches: main
18+
branches:
19+
- main
20+
- release-*
1921
pull_request:
20-
branches: main
22+
branches:
23+
- main
24+
- release-*
2125

2226
jobs:
2327
build:

.github/workflows/codeql.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ name: "CodeQL"
1515

1616
on:
1717
push:
18-
branches: [ "main" ]
18+
branches:
19+
- main
20+
- release-*
1921
pull_request:
2022
# The branches below must be a subset of the branches above
21-
branches: [ "main" ]
23+
branches:
24+
- main
25+
- release-*
2226
schedule:
2327
- cron: '30 5 * * 6'
2428

.github/workflows/license-checker.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,13 @@ name: License Checker
1515

1616
on:
1717
push:
18-
branches: main
18+
branches:
19+
- main
20+
- release-*
1921
pull_request:
20-
branches: main
22+
branches:
23+
- main
24+
- release-*
2125

2226
permissions:
2327
contents: write

0 commit comments

Comments
 (0)