From 8a1b14a4cc6a678ee2ea30fee86559425755e802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Sch=C3=BCrch?= Date: Thu, 11 Jul 2024 07:43:54 +0200 Subject: [PATCH] chore(workflows): align documentation and release workflows --- .github/workflows/build-documentation.yaml | 3 +- .github/workflows/deploy-documentation.yaml | 50 ++- .github/workflows/release-documentation.yaml | 64 +-- .github/workflows/release.yaml | 394 ++++++++++++++++++- 4 files changed, 457 insertions(+), 54 deletions(-) diff --git a/.github/workflows/build-documentation.yaml b/.github/workflows/build-documentation.yaml index fe65f6837f..bf5507801c 100644 --- a/.github/workflows/build-documentation.yaml +++ b/.github/workflows/build-documentation.yaml @@ -13,13 +13,14 @@ name: Build Documentation on: pull_request: + types: [opened, synchronize, edited, reopened] paths: - 'packages/**' jobs: build: + name: Build Documentation runs-on: ubuntu-latest - steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/deploy-documentation.yaml b/.github/workflows/deploy-documentation.yaml index 5468ef23b1..d2560daaa9 100644 --- a/.github/workflows/deploy-documentation.yaml +++ b/.github/workflows/deploy-documentation.yaml @@ -1,12 +1,4 @@ -### -# -# Deploy a pre-built documentation to netilfy -# -# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ -# -### - -name: Deploy Documentation Preview to Netlify +name: Deploy Documentation Preview on: workflow_run: workflows: ['Build Documentation'] @@ -14,16 +6,19 @@ on: jobs: deploy: + name: Deploy Documentation Preview runs-on: ubuntu-latest if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} - steps: - name: Checkout uses: actions/checkout@v4 - - name: Setup + - name: Setup pnpm & node uses: ./.github/actions/setup-pnpm + - name: Setup netlify-cli + uses: ./.github/actions/setup-netlify-cli + - name: Download build artifacts uses: ./.github/actions/artifact-download id: build @@ -39,20 +34,33 @@ jobs: const fs = require('fs') return JSON.parse(fs.readFileSync('./packages/documentation/netlify.config.json', 'utf8')) - - name: Deploy documentation to netlify - uses: ./.github/actions/deploy-to-netlify + - name: Deploy Documentation Preview id: deploy - with: - id: ${{ steps.build.outputs.id }} - netlify_auth_token: ${{ secrets.NETLIFY_AUTH_TOKEN }} - netlify_site_id: ${{ fromJSON(steps.netlify-config.outputs.result).siteId }} - netlify_site_url: ${{ fromJSON(steps.netlify-config.outputs.result).siteUrl }} - folder: ${{ steps.build.outputs.folder }} - package_name: '@swisspost/design-system-documentation' + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ fromJSON(steps.netlify-config.outputs.result).siteId }} + # run command taken from https://gist.github.com/oneohthree/f528c7ae1e701ad990e6, shortened to 28 chars, prepended with build-number + run: | + url_alias=`echo "preview-${{ steps.build.outputs.id }}" | iconv -t ascii//TRANSLIT | sed -E 's/[~\^]+//g' | sed -E 's/[^a-zA-Z0-9]+/-/g' | sed -E 's/^-+\|-+$//g' | sed -E 's/^-+//g' | sed -E 's/-+$//g' | tr A-Z a-z` + echo "site-url=https://$url_alias--${{ fromJSON(steps.netlify-config.outputs.result).siteUrl }}" >> $GITHUB_OUTPUT + netlify deploy --filter @swisspost/design-system-documentation --build false --dir ${{ steps.build.outputs.folder }} --alias $url_alias - name: Update preview message uses: ./.github/actions/preview/message/update with: access-token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} issue-number: ${{ steps.build.outputs.id }} - preview-url: ${{ steps.deploy.outputs.preview-url }} + preview-url: ${{ steps.deploy.outputs.site-url }} + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + with: + script: | + return `# Deployed Documentation Preview + - SiteId: ${{ fromJSON(steps.netlify-config.outputs.result).siteId }} + - SiteUrl: ${{ steps.deploy.outputs.site-url }} + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/release-documentation.yaml b/.github/workflows/release-documentation.yaml index 9786dce75b..349bdb4ef6 100644 --- a/.github/workflows/release-documentation.yaml +++ b/.github/workflows/release-documentation.yaml @@ -1,23 +1,17 @@ -### -# -# Release the documentation whenever it's package json changes on the main branch -# -### - -name: Release Documentation to Netlify - +name: Release Documentation on: push: branches: - main + - release/v* paths: - 'packages/documentation/package.json' concurrency: ${{ github.workflow }}-${{ github.ref }} jobs: - check-version: - name: Check Version + detect-version-change: + name: Detect Version Change runs-on: ubuntu-latest outputs: changed: ${{ steps.check.outputs.changed }} @@ -25,26 +19,36 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Check if version has changed - id: check # This will be the reference for getting the outputs. - uses: EndBug/version-check@v2 # You can choose the version/branch you prefer. + - name: Detect Version Change + id: check + uses: EndBug/version-check@v2 with: file-name: ./packages/documentation/package.json diff-search: true token: ${{ secrets.GITHUB_TOKEN }} + - name: Create Summary + id: summary + uses: actions/github-script@v7 + with: + script: | + return `# Version Change Detection + A version change has ${${{ steps.check.outputs.changed == 'true' }} ? 'been' : 'NOT been'} detected. + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY + release: name: Release Documentation runs-on: ubuntu-latest - needs: check-version - if: needs.check-version.outputs.changed == 'true' + needs: detect-version-change + if: needs.detect-version-change.outputs.changed == 'true' steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Setup + - name: Setup pnpm & node uses: ./.github/actions/setup-pnpm - name: Install documentation & dependencies @@ -53,10 +57,10 @@ jobs: - name: Build documentation & dependencies run: pnpm --filter "design-system-documentation..." build - - name: Install netlify cli - run: pnpm -g i netlify-cli + - name: Setup netlify-cli + uses: ./.github/actions/setup-netlify-cli - - name: Get netlify config + - name: Get Netlify Config id: netlify-config uses: actions/github-script@v7 with: @@ -65,7 +69,23 @@ jobs: return JSON.parse(fs.readFileSync('./packages/documentation/netlify.config.json', 'utf8')) - name: Publish documentation to netlify + id: deploy env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ fromJSON(steps.netlify-config.outputs.result).siteId }} - run: netlify deploy --filter @swisspost/design-system-documentation --build false --dir packages/documentation/storybook-static --prod + run: | + echo "site-url=https://${{ fromJSON(steps.netlify-config.outputs.result).siteUrl }}" >> $GITHUB_OUTPUT + netlify deploy --filter @swisspost/design-system-documentation --build false --dir packages/documentation/storybook-static --prod + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + with: + script: | + return `# Deployed Documentation + - SiteId: ${{ fromJSON(steps.netlify-config.outputs.result).siteId }} + - SiteUrl: ${{ steps.deploy.outputs.site-url }} + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d2dc800dda..dba82aa30b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,5 +1,4 @@ name: Release - on: push: branches: @@ -9,15 +8,13 @@ on: concurrency: ${{ github.workflow }}-${{ github.ref }} jobs: - release: - name: Release + changeset-magic: + name: Set up Changeset PR or Release Packages runs-on: ubuntu-latest steps: # Checkout the Branch which was pushed ('main' or 'release/v*') - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Setup Node & pnpm uses: ./.github/actions/setup-pnpm @@ -31,10 +28,10 @@ jobs: run: pnpm -r publish --dry-run # The changeset action will behave differently based on whether there are - # new changesets on the configured branch: + # new changesets on the github.ref branch: # # - new changesets: create a preview PR with the new version bumps and changelogs - # - no new changesets (the preview PR got merged into current branch): publish packages + # - no new changesets (the preview PR got merged into github.ref branch): publish packages - name: Changeset Magic id: changesets uses: changesets/action@v1 @@ -55,12 +52,389 @@ jobs: PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }} with: script: | - const publishedPackages = JSON.parse(process.env.PUBLISHED_PACKAGES) - return `# Changesets - Changesets published: ${process.env.PUBLISHED} - Published Packages: -
${JSON.stringify(publishedPackages, null, 2)}
+
${JSON.stringify(JSON.parse(process.env.PUBLISHED_PACKAGES), null, 2)}
+ ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY + + # Only run this Job if: + # - Workflow runs on the 'main' Branch + collect-release-data: + name: Collect Release Data + runs-on: ubuntu-latest + needs: changeset-magic + if: github.ref_name == 'main' + outputs: + release-data: ${{ steps.release-data.outputs.result }} + changeset-branch-exists: ${{ steps.changeset-branch-exists.outputs.exists }} + release-branch-exists: ${{ steps.release-branch-exists.outputs.exists }} + release-changeset-branch-exists: ${{ steps.release-changeset-branch-exists.outputs.exists }} + steps: + # Checkout the Branch which has been pushed ('main' or 'release/v*') + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node & pnpm + uses: ./.github/actions/setup-pnpm + + - name: Install Dependencies + run: pnpm i + + # Create Status Files + - name: Create Status Files + run: | + pnpm m ls --depth=0 --json > monorepo.json + pnpm changeset status --output=changesets.json + + # Read the status Files and collect release data on the @swisspost/design-system-styles package + - name: Collect Release Data + id: release-data + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs') + const monorepo = JSON.parse(fs.readFileSync('monorepo.json', 'utf8')) + const styles = JSON.parse(fs.readFileSync('./packages/styles/package.json', 'utf8')) + const changesets = JSON.parse(fs.readFileSync('changesets.json', 'utf8')) + const release = changesets.releases.find(r => r.name === '@swisspost/design-system-styles') + + if (!release) return null + + const oldMajor = release.oldVersion.split('.')[0]; + const newMajor = release.newVersion.split('.')[0]; + const dependencies = monorepo + .filter(pkg => pkg.private === false && pkg.version !== undefined) + .reduce((packages, pkg) => ({ ...packages, [pkg.name]: pkg.version }), { ...(styles.peerDependencies ?? {}) }) + + return { + isMajor: release.type === 'major', + old: { + version: release.oldVersion, + major: oldMajor, + siteUrl: `design-system-version-${oldMajor}` + }, + new: { + version: release.newVersion, + major: newMajor, + siteUrl: 'design-system' + }, + branchName: `release/v${oldMajor}`, + dependencies + } + + - name: Check if changset-release/main Branch exists + id: changeset-branch-exists + uses: GuillaumeFalourd/branch-exists@v1 + with: + branch: changeset-release/main + + - name: Check if release/v* Branch exists + id: release-branch-exists + uses: GuillaumeFalourd/branch-exists@v1 + with: + branch: ${{ fromJSON(steps.release-data.outputs.result).branchName }} + + - name: Check if changeset-release/release/v* Branch exists + id: release-changeset-branch-exists + uses: GuillaumeFalourd/branch-exists@v1 + with: + branch: changeset-release/${{ fromJSON(steps.release-data.outputs.result).branchName }} + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + env: + REF_NAME: ${{ github.ref_name }} + RELEASE_DATA: ${{ steps.release-data.outputs.result }} + CHANGESET_BRANCH_EXISTS: ${{ steps.changeset-branch-exists.outputs.exists }} + RELEASE_BRANCH_EXISTS: ${{ steps.release-branch-exists.outputs.exists }} + RELEASE_CHANGESET_BRANCH_EXISTS: ${{ steps.release-changeset-branch-exists.outputs.exists }} + with: + script: | + const release = JSON.parse(process.env.RELEASE_DATA) + const releaseBranch = release?.branchName ? `(${release.branchName})` : '' + const releaseChangesetBranch = release?.branchName ? `(changeset-release/${release.branchName})` : '' + + return `# Release Data + - Collecting Data: ${process.env.RELEASE_DATA === 'null' ? ':warning: WARNING: No Release Data found!' : ':rocket: SUCCESS!'} +
${JSON.stringify(release, null, 2)}
+ - The Changeset Branch (changeset-release/${process.env.REF_NAME}) exists already: ${process.env.CHANGESET_BRANCH_EXISTS} + - The Release Branch ${releaseBranch} exists already: ${process.env.RELEASE_BRANCH_EXISTS} + - The Release-Changeset Branch ${releaseChangesetBranch} exists already: ${process.env.RELEASE_CHANGESET_BRANCH_EXISTS} + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY + + # Only run this Job if: + # - Workflow runs on the 'main' Branch + # - Release-Changeset Branch exists + # - Release Data exists + update-changeset-branch: + name: Update changeset-release/{main,release/v*} Branch + runs-on: ubuntu-latest + needs: collect-release-data + if: github.ref_name == 'main' && needs.collect-release-data.outputs.changeset-branch-exists == 'true' && fromJSON(needs.collect-release-data.outputs.release-data) != null + steps: + # Checkout the changeset Branch + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} + ref: changeset-release/${{ github.ref_name }} + + - name: Setup Node & pnpm + uses: ./.github/actions/setup-pnpm + with: + use_cache: false # do not use the pnpm cache if you do not install any dependencies + + - name: Output Status Files + run: pnpm m ls --depth=0 --json > monorepo.json + + # Only run this Step if a major release was detected + - name: Update or create Documentation _redirects + id: update-redirects + if: fromJSON(needs.collect-release-data.outputs.release-data).isMajor == true + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs') + const release = ${{ needs.collect-release-data.outputs.release-data }} + + const redirectsPath = './packages/documentation/public/_redirects' + let redirects = '' + const redirect = `/v${release.old.major} https://${release.old.siteUrl}.netlify.app` + + if (fs.existsSync(redirectsPath)) { + redirects = fs.readFileSync(redirectsPath, 'utf8') + } else { + redirects = '# Redirects from what the browser requests to what we serve\n' + } + + if(!redirects.includes(redirect)) redirects += redirect + fs.writeFileSync(redirectsPath, redirects + '\n') + + return true + + - name: Update Documentation versions.json + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs') + const release = ${{ needs.collect-release-data.outputs.release-data }} + + const versionsPath = './packages/documentation/public/assets/versions.json' + const versions = JSON.parse(fs.readFileSync(versionsPath, 'utf8')) + const monorepo = JSON.parse(fs.readFileSync('monorepo.json', 'utf8')) + const styles = JSON.parse(fs.readFileSync('./packages/styles/package.json', 'utf8')) + + const currentVersion = versions.find(version => version.version.startsWith(release.old.major)) + currentVersion.version = release.new.version + currentVersion.dependencies = release.dependencies + + if (release.isMajor) { + currentVersion.version = release.old.version + currentVersion.url = `https://${release.old.siteUrl}.netlify.app` + + const dependencies = monorepo + .filter(pkg => pkg.private === false && pkg.version !== undefined) + .reduce((packages, pkg) => ({ ...packages, [pkg.name]: pkg.version }), { ...(styles.peerDependencies ?? {}) }) + versions.unshift({ + title: `Version ${release.new.major}`, + version: release.new.version, + description: 'Pattern documentation, code snippets and implementation guidelines for the Design System Styles.', + url: `https://${release.new.siteUrl}.post.ch`, + dependencies + }) + } + + fs.writeFileSync(versionsPath, JSON.stringify(versions, null, 2) + '\n') + + - name: Remove Status Files + run: rm -f monorepo.json + + - name: Commit Changes and Push Branch + uses: EndBug/add-and-commit@v9 + with: + author_name: Swiss Post Bot + author_email: 103635272+swisspost-bot@users.noreply.github.com + message: 'chore(changesets): update release specific files' + push: true + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + env: + REF_NAME: ${{ github.ref_name }} + RELEASE_DATA: ${{ needs.collect-release-data.outputs.release-data }} + RELEASE_BRANCH_EXISTS: ${{ needs.collect-release-data.outputs.release-branch-exists }} + with: + script: | + const release = JSON.parse(process.env.RELEASE_DATA) + + return `# Changeset Branch + The Release-Changeset Branch changeset-release/${process.env.REF_NAME} has been created by the Changeset Action. + In addition to that, the following updates have been made to this Branch: + ${release.isMajor && process.env.RELEASE_BRANCH_EXISTS === 'false' ? `- Netlify _redirects File has been created on to the changeset-release/${process.env.REF_NAME} Branch.` : ''} + - The Netlify versions.json File has been updated on to the changeset-release/${process.env.REF_NAME} Branch. + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY + + # Only run this Job if: + # - Workflow runs on the 'main' Branch + # - Release Branch does not already exist + # - Release Data exists + # - A Major Release was detected + create-release-branch: + name: Create release/v* Branch + runs-on: ubuntu-latest + needs: collect-release-data + if: github.ref_name == 'main' && needs.collect-release-data.outputs.release-branch-exists == 'false' && fromJSON(needs.collect-release-data.outputs.release-data) != null && fromJSON(needs.collect-release-data.outputs.release-data).isMajor == true + steps: + # Checkout the commit with the release.old.version tag (e.g. @swisspost/design-system-styles@5.3.2) + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} + ref: '@swisspost/design-system-styles@${{ fromJSON(needs.collect-release-data.outputs.release-data).old.version }}' + + - name: Remove Documentation versions.json + run: rm -f ./packages/documentation/public/assets/versions.json + + - name: Remove Documentation _redirects + run: rm -f ./packages/documentation/public/_redirects + + - name: Setup pnpm & node + uses: ./.github/actions/setup-pnpm + + - name: Install documentation & dependencies + run: pnpm --filter "design-system-documentation..." install + + - name: Build documentation & dependencies + run: pnpm --filter "design-system-documentation..." build + + - name: Setup netlify-cli + uses: ./.github/actions/setup-netlify-cli + + - name: Check if a Netlify Site with given siteUrl already exists + id: netlify-sites + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + run: | + mkdir -p packages/documentation/.netlify + netlify sites:list --filter @swisspost/design-system-documentation --json > packages/documentation/.netlify/swisspost-sites.json + exists=$(jq -r 'any(.[]; .name=="${{ fromJSON(needs.collect-release-data.outputs.release-data).old.siteUrl }}")' packages/documentation/.netlify/swisspost-sites.json) + echo "exists=$exists" >> $GITHUB_OUTPUT + + - name: Create Netlify Site (if it does not exist) + if: steps.netlify-sites.outputs.exists == 'false' + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + run: netlify sites:create --filter @swisspost/design-system-documentation --account-slug oss-udwyths --name ${{ fromJSON(needs.collect-release-data.outputs.release-data).old.siteUrl }} --manual + + - name: Deploy Netlify Site + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + run: | + netlify link --filter @swisspost/design-system-documentation --name ${{ fromJSON(needs.collect-release-data.outputs.release-data).old.siteUrl }} + netlify deploy --filter @swisspost/design-system-documentation --build false --dir packages/documentation/storybook-static --prod + + - name: Update Changeset config.json + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs') + const release = ${{ needs.collect-release-data.outputs.release-data }} + + const changesetConfigPath = './.changeset/config.json' + const changesetConfig = JSON.parse(fs.readFileSync(changesetConfigPath, 'utf8')) + fs.writeFileSync(changesetConfigPath, JSON.stringify({ + ...changesetConfig, + baseBranch: release.branchName + }, null, 2) + '\n') + + - name: Update Documentation netlify.config.json + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs') + const release = ${{ needs.collect-release-data.outputs.release-data }} + + const netlifyState = JSON.parse(fs.readFileSync('./packages/documentation/.netlify/state.json', 'utf8')) + fs.writeFileSync('./packages/documentation/netlify.config.json', JSON.stringify({ + ...netlifyState, + siteUrl: `${release.old.siteUrl}.netlify.app` + }, null, 2) + '\n') + + # Commit the changes to a new release/v* branch + - name: Commit Changes and Push Release Branch + uses: EndBug/add-and-commit@v9 + with: + author_name: Swiss Post Bot + author_email: 103635272+swisspost-bot@users.noreply.github.com + new_branch: ${{ fromJSON(needs.collect-release-data.outputs.release-data).branchName }} + message: 'chore(setup): create "${{ fromJSON(needs.collect-release-data.outputs.release-data).branchName }}" branch' + push: true + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + env: + RELEASE_DATA: ${{ needs.collect-release-data.outputs.release-data }} + with: + script: | + const release = JSON.parse(process.env.RELEASE_DATA) + + return `# Release Branch + - A new ${release.branchName} Branch has been created. + - The file .changeset/config.json (which holds the baseBranch property) has been updated on to the ${release.branchName} Branch. + - The file documentation/netlify.config.json (which holds the siteId and siteUrl) has been created on to the ${release.branchName} Branch. + - A new Netlify Site has been created and the build has been deployed to https://${release.old.siteUrl}.netlify.app. + ` + + - name: Output Summary + run: echo -e ${{ steps.summary.outputs.result }} >> $GITHUB_STEP_SUMMARY + + # Only run this Job if: + # - Workflow runs on the 'main' Branch + # - Either a Release Branch or a Changeset Branch exists + # - A non-Major Release was detected + remove-release-branch: + name: Remove release/v* Branch + runs-on: ubuntu-latest + needs: collect-release-data + if: github.ref_name == 'main' && (needs.collect-release-data.outputs.release-branch-exists == 'true' || needs.collect-release-data.outputs.release-changeset-branch-exists == 'true') && fromJSON(needs.collect-release-data.outputs.release-data) != null && fromJSON(needs.collect-release-data.outputs.release-data).isMajor == false + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ secrets.SWISSPOSTDEVS_ACCESS_TOKEN }} + + - name: Remove Changeset Branch + if: needs.collect-release-data.outputs.release-changeset-branch-exists == 'true' + run: git push origin --delete changeset-release/${{ fromJSON(needs.collect-release-data.outputs.release-data).branchName }} + + - name: Remove Release Branch + if: needs.collect-release-data.outputs.release-branch-exists == 'true' + run: git push origin --delete ${{ fromJSON(needs.collect-release-data.outputs.release-data).branchName }} + + - name: Create Summary + id: summary + uses: actions/github-script@v7 + env: + RELEASE_DATA: ${{ needs.collect-release-data.outputs.release-data }} + with: + script: | + const release = JSON.parse(process.env.RELEASE_DATA) + + return `# Release Branches + There once was a Changeset with a Major update, which has been deleted with the latest commit, therefore the before created ${release.branchName} and changeset-release/${release.branchName} Branches have been deleted. ` - name: Output Summary