Feat: token erc721 uristorage #3
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: Label PRs for feat-token-extensions | |
on: | |
pull_request: | |
branches: | |
- feat-token-extensions | |
jobs: | |
tag-and-label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up GitHub CLI | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install GitHub CLI | |
run: | | |
npm install -g @actions/github-script | |
- name: Add label to PR | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
github.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.pull_request.number, | |
labels: ['feat-token-extensions'] | |
}) | |
- name: Add Tag to PR Title | |
run: | | |
gh pr edit ${{ github.event.pull_request.number }} --add-label "feat-token-extensions" |