build(deps-dev): bump @typescript-eslint/parser from 5.62.0 to 8.21.0 #532
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: PR event trigger | |
on: | |
pull_request: | |
types: | |
- opened | |
- closed | |
jobs: | |
pr_opened: | |
name: PR opened | |
runs-on: ubuntu-latest | |
if: github.event.action == 'opened' | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Run Issue PR Labeler | |
uses: hoho4190/issue-pr-labeler@v2.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Assign 🙆 assignees to the PR | |
uses: toshimaru/auto-author-assign@v2.1.1 | |
update_release_draft: | |
name: Update release draft | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true && github.base_ref == 'main' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Update release draft | |
uses: release-drafter/release-drafter@v6.1.0 | |
with: | |
config-name: release-drafter-config.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |