We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a6a85c + 824e329 commit ad1edb6Copy full SHA for ad1edb6
.github/workflows/build.yml
@@ -8,7 +8,7 @@ name: CI
8
on:
9
# Triggers the workflow on push or pull request events but only for the main branch
10
push:
11
- branches: [ main ]
+ branches: [ main, 'rel/weekly' ]
12
pull_request:
13
branches: [ main, 'rel/weekly' ]
14
.github/workflows/scheduled-releases.yml
@@ -57,6 +57,7 @@ jobs:
57
if: ${{ env.HAS_NEW_COMMITS == 'true' }}
58
shell: pwsh
59
run: |
60
- gh pr merge ${{ env.PR_NUMBER }} --auto --rebase
+ # Should result in fast-forward unless branch histories diverge
61
+ gh pr merge ${{ env.PR_NUMBER }} --auto --merge
62
env:
63
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments