Commit 8c009642c1 for woocommerce
commit 8c009642c1f3a675a63ae25d2ff6b8b884781bb8
Author: Jorge A. Torres <jorge.torres@automattic.com>
Date: Mon Nov 17 18:24:49 2025 +0000
Temporarily disable PR verification step in release workflow
Check will be fixed as part of #61775.
diff --git a/.github/workflows/release-code-freeze.yml b/.github/workflows/release-code-freeze.yml
index 827c9e8ab7..76b03fbcaa 100644
--- a/.github/workflows/release-code-freeze.yml
+++ b/.github/workflows/release-code-freeze.yml
@@ -77,18 +77,18 @@ jobs:
nextReleaseBranch: ${{ steps.calculate-versions.outputs.nextReleaseBranch }}
nextReleaseVersion: ${{ steps.calculate-versions.outputs.nextReleaseVersion }}
steps:
- - name: Verify no PRs open by the github-actions bot are open
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
- with:
- script: |
- const automatedPRs = await github.rest.search.issuesAndPullRequests({
- q: `repo:${context.repo.owner}/${context.repo.repo} is:pr is:open author:app/github-actions`,
- });
+ # - name: Verify no PRs open by the github-actions bot are open
+ # uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1
+ # with:
+ # script: |
+ # const automatedPRs = await github.rest.search.issuesAndPullRequests({
+ # q: `repo:${context.repo.owner}/${context.repo.repo} is:pr is:open label:Release`,
+ # });
- if (automatedPRs.data.items.length > 0) {
- core.setFailed('There are PRs by the github-actions bot that are still open. Please merge or close before proceeding.');
- process.exit(1);
- }
+ # if (automatedPRs.data.items.length > 0) {
+ # core.setFailed('There are PRs by the github-actions bot that are still open. Please merge or close before proceeding.');
+ # process.exit(1);
+ # }
- uses: actions/checkout@v4
with:
ref: trunk