mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-11 12:33:45 +03:00
79 lines
2.9 KiB
YAML
79 lines
2.9 KiB
YAML
name: Cherry-pick into release branch
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
type: string
|
|
description: Version number, e.g. 1.25
|
|
required: true
|
|
commit_hashes:
|
|
type: string
|
|
description: Comma-separated list of commit hashes to cherry-pick
|
|
required: true
|
|
|
|
jobs:
|
|
roll:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Validate input version number
|
|
run: |
|
|
VERSION="${{ github.event.inputs.version }}"
|
|
if ! [[ "$VERSION" =~ ^[0-9]+\.[0-9]+$ ]]; then
|
|
echo "Version is not a two digit semver version"
|
|
exit 1
|
|
fi
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: release-${{ github.event.inputs.version }}
|
|
fetch-depth: 0
|
|
- name: Cherry-pick commits
|
|
id: cherry-pick
|
|
run: |
|
|
git config --global user.name github-actions
|
|
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
|
|
for COMMIT_HASH in $(echo "${{ github.event.inputs.commit_hashes }}" | tr "," "\n"); do
|
|
git cherry-pick --no-commit "$COMMIT_HASH"
|
|
|
|
COMMIT_MESSAGE="$(git show -s --format=%B $COMMIT_HASH | head -n 1)"
|
|
COMMIT_MESSAGE=$(node -e '
|
|
const match = /^(.*) (\(#\d+\))$/.exec(process.argv[1]);
|
|
if (!match) {
|
|
console.log(process.argv[1]);
|
|
process.exit(0);
|
|
}
|
|
console.log(`cherry-pick${match[2]}: ${match[1]}`);
|
|
' "$COMMIT_MESSAGE")
|
|
|
|
git commit -m "$COMMIT_MESSAGE"
|
|
done
|
|
LAST_COMMIT_MESSAGE=$(git show -s --format=%B)
|
|
echo "PR_TITLE=$LAST_COMMIT_MESSAGE" >> $GITHUB_OUTPUT
|
|
- name: Prepare branch
|
|
id: prepare-branch
|
|
run: |
|
|
BRANCH_NAME="cherry-pick-${{ github.event.inputs.version }}-$(date +%Y-%m-%d-%H-%M-%S)"
|
|
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_OUTPUT
|
|
git checkout -b "$BRANCH_NAME"
|
|
git push origin $BRANCH_NAME
|
|
- name: Create Pull Request
|
|
uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
|
|
script: |
|
|
const readableCommitHashesList = '${{ github.event.inputs.commit_hashes }}'.split(',').map(hash => `- ${hash}`).join('\n');
|
|
const response = await github.rest.pulls.create({
|
|
owner: 'microsoft',
|
|
repo: 'playwright',
|
|
head: 'microsoft:${{ steps.prepare-branch.outputs.BRANCH_NAME }}',
|
|
base: 'release-${{ github.event.inputs.version }}',
|
|
title: '${{ steps.cherry-pick.outputs.PR_TITLE }}',
|
|
body: `This PR cherry-picks the following commits:\n\n${readableCommitHashesList}`,
|
|
});
|
|
await github.rest.issues.addLabels({
|
|
owner: 'microsoft',
|
|
repo: 'playwright',
|
|
issue_number: response.data.number,
|
|
labels: ['CQ1'],
|
|
});
|