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.
1 parent c4ac932 commit 5f6dc83Copy full SHA for 5f6dc83
.github/workflows/ci.yml
@@ -239,8 +239,8 @@ jobs:
239
blueprint-test,
240
browser-test,
241
]
242
- # Only run on pushes to branches that are not from the cron workflow
243
- if: github.event_name == 'push' && contains(github.ref, 'cron') != true
+ # Only run on pushes to branches that are not from the cron workflow or the next branch
+ if: github.event_name == 'push' && contains(github.ref, 'cron') != true && contains(github.ref, 'next') != true
244
steps:
245
- uses: actions/checkout@v4
246
- uses: ./.github/actions/setup
0 commit comments