2022-12-01 08:36:26 +00:00
name: 'Release : Code freeze'
2022-02-09 19:43:05 +00:00
on :
2022-12-01 08:36:26 +00:00
schedule :
2022-12-20 16:51:41 +00:00
- cron : '0 23 * * 1' # Run at 2300 UTC on Mondays.
2022-12-01 08:36:26 +00:00
workflow_dispatch :
inputs :
timeOverride :
description : "Time Override: The time to use in checking whether the action should run (default: 'now')."
default : 'now'
skipSlackPing :
description: 'Skip Slack Ping : If true, the Slack ping will be skipped (useful for testing)'
type : boolean
slackChannelOverride :
description: 'Slack Channel Override : The channel ID to send the Slack ping about the freeze'
2022-06-16 19:44:07 +00:00
env :
2023-04-19 19:07:54 +00:00
TIME_OVERRIDE : ${{ inputs.timeOverride || 'now' }}
2022-10-13 18:23:03 +00:00
GIT_COMMITTER_NAME : 'WooCommerce Bot'
GIT_COMMITTER_EMAIL : 'no-reply@woocommerce.com'
GIT_AUTHOR_NAME : 'WooCommerce Bot'
GIT_AUTHOR_EMAIL : 'no-reply@woocommerce.com'
2022-02-09 19:43:05 +00:00
2023-01-02 17:28:11 +00:00
permissions : {}
2022-02-09 19:43:05 +00:00
jobs :
2023-04-26 21:02:32 +00:00
code-freeze-prep :
name : 'Verify that today is the day of the code freeze and prepare repository'
2022-12-01 08:36:26 +00:00
runs-on : ubuntu-20.04
2023-04-26 21:02:32 +00:00
permissions :
contents : write
issues : write
2022-12-01 08:36:26 +00:00
outputs :
freeze : ${{ steps.check-freeze.outputs.freeze }}
2023-04-26 21:02:32 +00:00
nextReleaseBranch : ${{ steps.branch.outputs.nextReleaseBranch }}
nextReleaseVersion : ${{ steps.milestone.outputs.nextReleaseVersion }}
nextDevelopmentVersion : ${{ steps.milestone.outputs.nextDevelopmentVersion }}
2022-12-01 08:36:26 +00:00
steps :
2023-04-12 21:28:53 +00:00
- name : Checkout code
uses : actions/checkout@v3
2022-12-01 08:36:26 +00:00
with :
2023-04-12 21:28:53 +00:00
fetch-depth : 0
2022-12-01 08:36:26 +00:00
2023-04-12 21:28:53 +00:00
- name : Install prerequisites
2022-12-01 08:36:26 +00:00
run : |
2023-04-25 06:49:30 +00:00
npm install -g pnpm
2023-04-12 21:28:53 +00:00
pnpm install --filter monorepo-utils
2022-12-01 08:36:26 +00:00
2023-04-12 21:28:53 +00:00
- name : 'Check whether today is the code freeze day'
id : check-freeze
2023-04-28 00:31:33 +00:00
run : pnpm utils code-freeze verify-day -o $TIME_OVERRIDE
2022-12-01 08:36:26 +00:00
2023-04-26 21:02:32 +00:00
- name : Create next milestone
id : milestone
if : steps.check-freeze.outputs.freeze == 'true'
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2023-04-28 00:31:33 +00:00
run : pnpm run utils code-freeze milestone -o ${{ github.repository_owner }}
2022-12-01 08:36:26 +00:00
2023-04-26 21:02:32 +00:00
- name : Create next release branch
id : branch
if : steps.check-freeze.outputs.freeze == 'true'
2022-12-01 08:36:26 +00:00
env :
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2023-04-28 00:31:33 +00:00
run : pnpm run utils code-freeze branch -o ${{ github.repository_owner }}
2022-12-01 08:36:26 +00:00
prep-trunk :
name : Preps trunk for next development cycle
runs-on : ubuntu-20.04
2023-01-02 17:28:11 +00:00
permissions :
2023-01-16 14:12:25 +00:00
contents : write
pull-requests : write
2023-04-26 21:02:32 +00:00
needs : code-freeze-prep
if : needs.code-freeze-prep.outputs.freeze == 'true'
2022-12-01 08:36:26 +00:00
steps :
- name : Checkout code
uses : actions/checkout@v3
with :
fetch-depth : 100
- name : fetch-trunk
run : git fetch origin trunk
- name : checkout-trunk
run : git checkout trunk
- name : Setup WooCommerce Monorepo
uses : ./.github/actions/setup-woocommerce-monorepo
- name : Create branch
2023-04-26 21:02:32 +00:00
run : git checkout -b prep/trunk-for-next-dev-cycle-${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }}
2022-12-01 08:36:26 +00:00
- name : Bump versions
working-directory : ./tools/version-bump
2023-04-26 21:02:32 +00:00
run : pnpm run version bump woocommerce -v ${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }}.0-dev
2022-12-01 08:36:26 +00:00
- name : Checkout pnpm-lock.yaml to prevent issues
run : git checkout pnpm-lock.yaml
- name : Commit changes
2023-04-26 21:02:32 +00:00
run : git commit -am "Prep trunk for ${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }} cycle"
2022-12-01 08:36:26 +00:00
- name : Push branch up
2023-04-26 21:02:32 +00:00
run : git push --no-verify origin prep/trunk-for-next-dev-cycle-${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }}
2022-12-01 08:36:26 +00:00
- name : Create the PR
uses : actions/github-script@v6
with :
script : |
2023-04-26 21:02:32 +00:00
const body = "This PR updates the versions in trunk to ${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }} for next development cycle."
2022-12-01 08:36:26 +00:00
const pr = await github.rest.pulls.create({
owner : context.repo.owner,
repo : context.repo.repo,
2023-04-26 21:02:32 +00:00
title : "Prep trunk for ${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }} cycle" ,
head : "prep/trunk-for-next-dev-cycle-${{ needs.code-freeze-prep.outputs.nextDevelopmentVersion }}" ,
2022-12-01 08:36:26 +00:00
base : "trunk" ,
body : body
})
notify-slack :
name : 'Sends code freeze notification to Slack'
runs-on : ubuntu-20.04
2023-04-26 21:02:32 +00:00
needs : prep-trunk
if : ${{ inputs.skipSlackPing != true }}
2022-12-01 08:36:26 +00:00
steps :
- name : Slack
uses : archive/github-actions-slack@v2.0.0
id : notify
with :
slack-bot-user-oauth-access-token : ${{ secrets.CODE_FREEZE_BOT_TOKEN }}
slack-channel : ${{ inputs.slackChannelOverride || secrets.WOO_RELEASE_SLACK_CHANNEL }}
slack-text : |
2023-04-26 21:02:32 +00:00
:warning-8c : ${{ needs.code-freeze-prep.outputs.nextReleaseVersion }} Code Freeze :ice_cube:
2022-12-01 08:36:26 +00:00
2023-04-26 21:02:32 +00:00
The automation to cut the release branch for ${{ needs.code-freeze-prep.outputs.nextReleaseVersion }} has run. Any PRs that were not already merged will be a part of ${{ needs.maybe-create-next-milestone-and-release-branch.outputs.nextDevelopmentVersion }} by default. If you have something that needs to make ${{ needs.maybe-create-next-milestone-and-release-branch.outputs.nextReleaseVersion }} that hasn't yet been merged, please see the <${{ secrets.FG_LINK }}/code-freeze-for-woocommerce-core-release/|fieldguide page for the code freeze>.
2022-12-01 08:36:26 +00:00
trigger-changelog-action :
name : 'Trigger changelog action'
runs-on : ubuntu-20.04
2023-01-02 17:28:11 +00:00
permissions :
2023-01-16 14:12:25 +00:00
actions : write
2023-04-26 21:02:32 +00:00
needs : code-freeze-prep
if : needs.code-freeze-prep.outputs.freeze == 'true'
2022-12-01 08:36:26 +00:00
steps :
- name : 'Trigger changelog action'
uses : actions/github-script@v6
with :
script : |
github.rest.actions.createWorkflowDispatch({
owner : context.repo.owner,
repo : context.repo.repo,
workflow_id : 'release-changelog.yml' ,
ref : 'trunk' ,
inputs : {
2023-04-26 21:02:32 +00:00
releaseVersion : "${{ needs.code-freeze-prep.outputs.nextReleaseVersion }}" ,
releaseBranch : "${{ needs.code-freeze-prep.outputs.nextReleaseBranch }}"
2022-12-01 08:36:26 +00:00
}
})