Skip to content

Commit

Permalink
feat: add release/v branches to all branch CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Jul 5, 2023
1 parent 476967a commit 73d7bf1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-test-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
branches:
- main
- latest
- release/v*
paths:
- workspace/test-workspace/**
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
branches:
- main
- latest
- release/v*
paths-ignore:
- workspace/test-workspace/**
schedule:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ on:
branches:
- main
- latest
- release/v*
pull_request:
branches:
- main
- latest
- release/v*
schedule:
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
- cron: "0 10 * * 1"
Expand Down
2 changes: 1 addition & 1 deletion lib/content/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module.exports = {
workspaceModule,
windowsCI: true,
macCI: true,
branches: ['main', 'latest'],
branches: ['main', 'latest', 'release/v*'],
defaultBranch: 'main',
distPaths: [
'bin/',
Expand Down
1 change: 0 additions & 1 deletion lib/content/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
{{#each branches}}
- {{ . }}
{{/each}}
- release/v*

permissions:
contents: write
Expand Down
10 changes: 10 additions & 0 deletions tap-snapshots/test/apply/source-snapshots.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ on:
branches:
- main
- latest
- release/v*
schedule:
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
- cron: "0 9 * * 1"
Expand Down Expand Up @@ -574,10 +575,12 @@ on:
branches:
- main
- latest
- release/v*
pull_request:
branches:
- main
- latest
- release/v*
schedule:
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
- cron: "0 10 * * 1"
Expand Down Expand Up @@ -1685,6 +1688,7 @@ on:
branches:
- main
- latest
- release/v*
paths:
- workspaces/a/**
schedule:
Expand Down Expand Up @@ -1799,6 +1803,7 @@ on:
branches:
- main
- latest
- release/v*
paths:
- workspaces/b/**
schedule:
Expand Down Expand Up @@ -2133,6 +2138,7 @@ on:
branches:
- main
- latest
- release/v*
paths-ignore:
- workspaces/a/**
- workspaces/b/**
Expand Down Expand Up @@ -2244,10 +2250,12 @@ on:
branches:
- main
- latest
- release/v*
pull_request:
branches:
- main
- latest
- release/v*
schedule:
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
- cron: "0 10 * * 1"
Expand Down Expand Up @@ -3355,6 +3363,7 @@ on:
branches:
- main
- latest
- release/v*
paths:
- workspaces/a/**
schedule:
Expand Down Expand Up @@ -3469,6 +3478,7 @@ on:
branches:
- main
- latest
- release/v*
paths:
- workspaces/b/**
schedule:
Expand Down
2 changes: 1 addition & 1 deletion tap-snapshots/test/check/diff-snapshots.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ The repo file ci.yml needs to be updated:
.github/workflows/ci.yml
========================================
@@ -83,5 +83,25 @@
@@ -84,5 +84,25 @@
node-version: \${{ matrix.node-version }}
- name: Update Windows npm
# node 12 and 14 ship with npm@6, which is known to fail when updating itself in windows
Expand Down

0 comments on commit 73d7bf1

Please sign in to comment.