Bump Gr1N/setup-poetry from 8 to 9 #202
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
# cspell:ignore deepakputhraya dependabot | |
name: PR | |
on: | |
pull_request: | |
jobs: | |
enforce-branch-name: | |
name: Enforce Branch Name | |
runs-on: ubuntu-latest | |
steps: | |
- uses: deepakputhraya/[email protected] | |
with: | |
regex: ([a-z])+\/([a-zA-Z0-9\-\_])+ | |
allowed_prefixes: bugfix,chore,depend,dependencies,dependabot,docs,feat,feature,fix,hotfix,maint,maintain,maintenance,release | |
ignore: master,release,develop | |
label-pr: | |
name: Label PR | |
# skip running the job from forks | |
# uncomment and replace with the name of the repo | |
# if: github.repository == 'ITProKyle/generic-template' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |