chore(main): Release v4.68.2 #3476
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
# Warning, do not check out untrusted code with | |
# the pull_request_target event. | |
# the current workflow IS safe as long as you dont checkout untrusted code | |
# https://nathandavison.com/blog/github-actions-and-the-threat-of-malicious-pull-requests | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
name: conventional-release-labels | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: bcoe/conventional-release-labels@v1 | |
with: | |
type_labels: '{ "feat": "feat", "fix": "fix", "chore": "chore", "refactor": "refactor", "test": "test", "breaking": "breaking" }' |