mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
f1b00de693
* fix(action): octokit not supported on MetaMask repos The github action was constantly failing with the following error: octokit/request-action@v2.x is not allowed to be used in MetaMask/metamask-extension * fix(action): shellcheck was failing Shellcheck was failing in the CI. Had to craft the payload of the curl before doing the curl to fix this.
36 lines
1.9 KiB
YAML
36 lines
1.9 KiB
YAML
name: Create release bug report issue when release branch gets created
|
|
|
|
on: create
|
|
|
|
jobs:
|
|
create-bug-report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Extract version from branch name if release branch
|
|
id: extract_version
|
|
run: |
|
|
if [[ "$GITHUB_REF" == "refs/heads/Version-v"* ]]; then
|
|
version="${GITHUB_REF#refs/heads/Version-v}"
|
|
echo "New release branch($version), continue next steps"
|
|
echo "version=$version" >> "$GITHUB_ENV"
|
|
else
|
|
echo "Not a release branch, skip next steps"
|
|
fi
|
|
|
|
- name: Create bug report issue on planning repo
|
|
if: env.version
|
|
run: |
|
|
payload=$(cat <<EOF
|
|
{
|
|
"title": "v${{ env.version }} Bug Report",
|
|
"body": "This bug report was automatically created by a GitHub action upon the creation of release branch \`Version-v${{ env.version }}\` (release cut).\n\n**Expected actions for release engineers:**\n\n1. Convert this issue into a Zenhub epic and link all bugs identified during the release regression testing phase to this epic.\n\n2. After completing the first regression run, move this epic to \"Regression Completed\" on the [Extension Release Regression board](https://app.zenhub.com/workspaces/extension-release-regression-6478c62d937eaa15e95c33c5/board?filterLogic=any&labels=release-${{ env.version }},release-task).\n\nNote that once the release is prepared for store submission, meaning the \`Version-v${{ env.version }}\` branch merges into \`master\`, another GitHub action will automatically close this epic.",
|
|
"labels": ["type-bug", "regression-RC", "release-${{ env.version }}"]
|
|
}
|
|
EOF
|
|
)
|
|
curl -X POST \
|
|
-H "Authorization: token ${{ secrets.BUG_REPORT_TOKEN }}" \
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
https://api.github.com/repos/MetaMask/MetaMask-planning/issues \
|
|
-d "$payload"
|