refactor(create-new-vault): Replace deprecated TextField with FormTextField #56628
Workflow file for this run
This file contains hidden or 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: Check template and add labels | |
on: | |
issues: | |
types: [opened, edited, labeled, unlabeled, reopened] | |
pull_request_target: | |
types: [opened, edited, labeled, unlabeled, reopened] | |
merge_group: | |
jobs: | |
check-template-and-add-labels: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: ${{ github.event_name != 'merge_group' }} # Skip this step for merge_group events | |
steps: | |
- name: Checkout and setup environment | |
uses: MetaMask/action-checkout-and-setup@v1 | |
with: | |
is-high-risk-environment: false | |
skip-allow-scripts: true | |
use-yarn-hydrate: true | |
- name: Check template and add labels | |
id: check-template-and-add-labels | |
env: | |
LABEL_TOKEN: ${{ secrets.LABEL_TOKEN }} | |
run: npm run check-template-and-add-labels |