-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"wrangler": patch | ||
--- | ||
|
||
test patch bump backporting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: v3 Maintenance | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
open-pr: | ||
if: ${{ github.repository_owner == 'cloudflare' }} | ||
name: Open backport PR for patches | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Dependencies | ||
uses: ./.github/actions/install-dependencies | ||
|
||
- uses: Ana06/[email protected] | ||
id: files | ||
with: | ||
format: "json" | ||
|
||
- run: node -r esbuild-register tools/deployments/open-v3-pr.ts | ||
env: | ||
FILES: ${{ steps.files.outputs.all }} | ||
PR_NUMBER: ${{ github.event.number }} | ||
GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { execSync } from "node:child_process"; | ||
import { readFileSync } from "node:fs"; | ||
import parseChangeset from "@changesets/parse"; | ||
|
||
/* eslint-disable turbo/no-undeclared-env-vars */ | ||
if (require.main === module) { | ||
if (isWranglerPatch(process.env.FILES as string)) { | ||
// Create a new branch for the v3 maintenance PR | ||
execSync(`git checkout -b v3-maintenance-${process.env.PR_NUMBER} -f`); | ||
|
||
execSync(`git push origin HEAD --force`); | ||
|
||
execSync( | ||
`gh pr create --head v3-maintenance-${process.env.PR_NUMBER} --label "skip-pr-description-validation" --title "Backport #${process.env.PR_NUMBER} to Wrangler v3" --body "This is an automatically opened PR to backport patch changes from #${process.env.PR_NUMBER} to Wrangler v3"` | ||
); | ||
} | ||
} | ||
|
||
export function isWranglerPatch(changedFilesJson: string) { | ||
const changedFiles = JSON.parse(changedFilesJson) as string[]; | ||
const changesets = changedFiles | ||
.filter((f) => f.startsWith(".changeset/")) | ||
.map((c) => parseChangeset(readFileSync(c, "utf8"))); | ||
|
||
let hasWranglerPatch = false; | ||
for (const changeset of changesets) { | ||
for (const release of changeset.releases) { | ||
if (release.name === "wrangler" && release.type === "patch") { | ||
hasWranglerPatch = true; | ||
} | ||
} | ||
} | ||
return hasWranglerPatch; | ||
} |