From 62706dccb04d9c1748b0beff78484391ee08ec9f Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Thu, 8 May 2025 18:46:27 +0200 Subject: [PATCH] Trigger updates to the internal `upgrades` repo (#17928) This PR updates will now trigger the new internal `upgrades` repo instead of the Tailwind Play repo directly. We will be updating more internal repos when a new version is published. We will also use that new repo to update our other repos for other published packages in the future. --- .github/workflows/release-insiders.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-insiders.yml b/.github/workflows/release-insiders.yml index e1172dc70..53478a227 100644 --- a/.github/workflows/release-insiders.yml +++ b/.github/workflows/release-insiders.yml @@ -312,7 +312,7 @@ jobs: script: | await github.rest.actions.createWorkflowDispatch({ owner: 'tailwindlabs', - repo: 'play.tailwindcss.com', - ref: 'master', + repo: 'upgrades', + ref: 'main', workflow_id: 'upgrade-tailwindcss.yml' }) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a9f0d5a1..8b27773b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -306,7 +306,7 @@ jobs: script: | await github.rest.actions.createWorkflowDispatch({ owner: 'tailwindlabs', - repo: 'play.tailwindcss.com', - ref: 'master', + repo: 'upgrades', + ref: 'main', workflow_id: 'upgrade-tailwindcss.yml' })