chore(deps): update dependency decorator-transforms to ^2.2.2 #9746
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 | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, reopened] | |
branches: | |
- main | |
concurrency: | |
group: pr-labels-canary-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
enforce-changelog-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: yogevbd/[email protected] | |
with: | |
REQUIRED_LABELS_ANY: ':label: breaking,:label: feat,:label: bug,:label: perf,:label: cleanup,:label: deprecation,:label: doc,:label: test,:label: chore,:label: dependencies' | |
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label for changelog generation. [':label: breaking', ':label: feat', ':label: bug', ':label: perf', ':label: cleanup', ':label: deprecation', ':label: doc', ':label: test', ':label: chore', ':label: dependencies']" | |
enforce-target-label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: yogevbd/[email protected] | |
with: | |
REQUIRED_LABELS_ANY: ':dart: canary,:dart: beta,:dart: release,:dart: lts,:dart: lts-prev,:label: dependencies' | |
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label for what release channels to target. Use the labels `:dart: canary` or `:label: dependencies` and none of the others in the list if this PR should not be backported. [':dart: canary', ':dart: beta', ':dart: release', ':dart: lts', ':dart: lts-prev']" | |
ban-release-branch-labels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: yogevbd/[email protected] | |
with: | |
BANNED_LABELS: 'backport-beta,backport-release,backport-lts,backport-lts-prev,backport-old-release' | |
BANNED_LABELS_DESCRIPTION: "The following labels should only be applied to PRs targeting release channel branches that backport a change already on the main branch, remove them.['backport-beta', 'backport-release', 'backport-lts', 'backport-lts-prev', 'backport-old-release']" |