From 9a9d3778375febc5e3dda020f831277f7c032570 Mon Sep 17 00:00:00 2001 From: sharon Date: Wed, 13 Nov 2024 14:01:20 -0500 Subject: [PATCH] add prerelease branches to the PR CI workflow (#5352) Following https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-including-branches, we can add the prerelease branch pattern `prerelease/**` so that the usual PR CI is triggered when PRs are opened against prerelease branches. This is helpful for verifying backported fixes or fixes targeted for prerelease branches. I noticed this when I targeted my fix for #5197 for the prerelease branch, merged it, but then ran into CI failures in my PR to bring in the same fix to main. For the patch branch PR, I manually ran the Full and Windows test suites, but missed the Python one. ### QA Notes PRs against `prerelease` branches should now automatically kick off the usual CI workflows that we see for PRs against `main`. --- .github/workflows/positron-pull-requests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/positron-pull-requests.yml b/.github/workflows/positron-pull-requests.yml index bce262816b3..a0277deb873 100644 --- a/.github/workflows/positron-pull-requests.yml +++ b/.github/workflows/positron-pull-requests.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + - 'prerelease/**' jobs: positron-ci: