fix: smart transactions in redesigned confirmations #4060
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add release label to PR and linked issues when PR gets merged | |
on: | |
pull_request: | |
branches: | |
- develop | |
types: | |
- closed | |
jobs: | |
add-release-label: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # This is needed to checkout all branches | |
- name: Setup environment | |
uses: metamask/github-tools/.github/actions/setup-environment@main | |
- name: Get the next semver version | |
id: get-next-semver-version | |
env: | |
FORCE_NEXT_SEMVER_VERSION: ${{ vars.FORCE_NEXT_SEMVER_VERSION }} | |
run: ./development/get-next-semver-version.sh "$FORCE_NEXT_SEMVER_VERSION" | |
- name: Add release label to PR and linked issues | |
id: add-release-label-to-pr-and-linked-issues | |
env: | |
RELEASE_LABEL_TOKEN: ${{ secrets.RELEASE_LABEL_TOKEN }} | |
NEXT_SEMVER_VERSION: ${{ env.NEXT_SEMVER_VERSION }} | |
run: yarn run add-release-label-to-pr-and-linked-issues |