chore(deps): bump elliptic from 6.5.7 to 6.6.0 #41679
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: 🏷 Require release label | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled, unlabeled] | |
# Cancel in-progress runs of this workflow. | |
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# No top level permissions are required for this workflow | |
permissions: {} | |
jobs: | |
require-release-label: | |
name: 🏷 Require release label | |
runs-on: ubuntu-latest | |
permissions: | |
issues: read | |
pull-requests: read | |
steps: | |
- uses: mheap/github-action-required-labels@d25134c992b943fb6ad00c25ea00eb5988c0a9dd # v5 | |
with: | |
mode: exactly | |
count: 1 | |
labels: 'release:docs, release:chore, release:experimental-breaking, release:fix, release:feature, release:breaking, release:dependency' |