Skip to content

Commit 73d7bf1

Browse files
committedJul 5, 2023
feat: add release/v branches to all branch CI
1 parent 476967a commit 73d7bf1

File tree

7 files changed

+16
-3
lines changed

7 files changed

+16
-3
lines changed
 

‎.github/workflows/ci-test-workspace.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
branches:
1212
- main
1313
- latest
14+
- release/v*
1415
paths:
1516
- workspace/test-workspace/**
1617
schedule:

‎.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
branches:
1212
- main
1313
- latest
14+
- release/v*
1415
paths-ignore:
1516
- workspace/test-workspace/**
1617
schedule:

‎.github/workflows/codeql-analysis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ on:
77
branches:
88
- main
99
- latest
10+
- release/v*
1011
pull_request:
1112
branches:
1213
- main
1314
- latest
15+
- release/v*
1416
schedule:
1517
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
1618
- cron: "0 10 * * 1"

‎lib/content/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ module.exports = {
131131
workspaceModule,
132132
windowsCI: true,
133133
macCI: true,
134-
branches: ['main', 'latest'],
134+
branches: ['main', 'latest', 'release/v*'],
135135
defaultBranch: 'main',
136136
distPaths: [
137137
'bin/',

‎lib/content/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ on:
1111
{{#each branches}}
1212
- {{ . }}
1313
{{/each}}
14-
- release/v*
1514

1615
permissions:
1716
contents: write

‎tap-snapshots/test/apply/source-snapshots.js.test.cjs

+10
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ on:
466466
branches:
467467
- main
468468
- latest
469+
- release/v*
469470
schedule:
470471
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
471472
- cron: "0 9 * * 1"
@@ -574,10 +575,12 @@ on:
574575
branches:
575576
- main
576577
- latest
578+
- release/v*
577579
pull_request:
578580
branches:
579581
- main
580582
- latest
583+
- release/v*
581584
schedule:
582585
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
583586
- cron: "0 10 * * 1"
@@ -1685,6 +1688,7 @@ on:
16851688
branches:
16861689
- main
16871690
- latest
1691+
- release/v*
16881692
paths:
16891693
- workspaces/a/**
16901694
schedule:
@@ -1799,6 +1803,7 @@ on:
17991803
branches:
18001804
- main
18011805
- latest
1806+
- release/v*
18021807
paths:
18031808
- workspaces/b/**
18041809
schedule:
@@ -2133,6 +2138,7 @@ on:
21332138
branches:
21342139
- main
21352140
- latest
2141+
- release/v*
21362142
paths-ignore:
21372143
- workspaces/a/**
21382144
- workspaces/b/**
@@ -2244,10 +2250,12 @@ on:
22442250
branches:
22452251
- main
22462252
- latest
2253+
- release/v*
22472254
pull_request:
22482255
branches:
22492256
- main
22502257
- latest
2258+
- release/v*
22512259
schedule:
22522260
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
22532261
- cron: "0 10 * * 1"
@@ -3355,6 +3363,7 @@ on:
33553363
branches:
33563364
- main
33573365
- latest
3366+
- release/v*
33583367
paths:
33593368
- workspaces/a/**
33603369
schedule:
@@ -3469,6 +3478,7 @@ on:
34693478
branches:
34703479
- main
34713480
- latest
3481+
- release/v*
34723482
paths:
34733483
- workspaces/b/**
34743484
schedule:

‎tap-snapshots/test/check/diff-snapshots.js.test.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ The repo file ci.yml needs to be updated:
173173
174174
.github/workflows/ci.yml
175175
========================================
176-
@@ -83,5 +83,25 @@
176+
@@ -84,5 +84,25 @@
177177
node-version: \${{ matrix.node-version }}
178178
- name: Update Windows npm
179179
# node 12 and 14 ship with npm@6, which is known to fail when updating itself in windows

0 commit comments

Comments
 (0)
Please sign in to comment.