deps(github-actions): bump the github-actions group across 1 directory with 3 updates #896
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: "Pull Request Checks" | |
on: | |
pull_request: | |
types: | |
[ | |
opened, | |
edited, | |
unlocked, | |
labeled, | |
synchronize, | |
reopened, | |
ready_for_review, | |
] | |
permissions: | |
pull-requests: write | |
jobs: | |
check-pr-title: | |
name: Check PR Title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR Title | |
uses: deepakputhraya/[email protected] | |
with: | |
allowed_prefixes: "feat: ,fix: ,bug: ,ci: ,refactor: ,docs: ,build: ,chore(,deps(,chore: ,feat!: ,fix!: ,refactor!: ,test: " # title should start with the given prefix | |
labeller: | |
name: Label Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label Pull Request | |
uses: actions/[email protected] | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/other-configurations/labeller.yml | |
sync-labels: true | |
- name: Add Size Labels | |
uses: pascalgn/[email protected] | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
with: | |
sizes: > | |
{ | |
"0": "XS", | |
"40": "S", | |
"100": "M", | |
"200": "L", | |
"800": "XL", | |
"2000": "XXL" | |
} |