Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3d853bc

Browse files
committedDec 30, 2024·
Adds branches to report.yml
Generate the report for all the branches.
1 parent 6ed4ce4 commit 3d853bc

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎.github/workflows/report.yml

+12
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@ on:
66
push:
77
branches:
88
- main
9+
- '8.x'
10+
- '8.17'
11+
- '8.16'
912
jobs:
1013
generate_report:
1114
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
branch:
18+
- main
19+
- '8.x'
20+
- '8.17'
21+
- '8.16'
1222
steps:
1323
- uses: actions/checkout@v4
1424
with:
1525
persist-credentials: false
26+
ref: ${{ matrix.branch }}
27+
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
1628
- uses: ruby/setup-ruby@v1
1729
with:
1830
ruby-version: 3.3

0 commit comments

Comments
 (0)
Please sign in to comment.