Ipb 1242/temp allow auto approve #2539
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: branch-name-validator | |
on: [pull_request] | |
jobs: | |
check-jira-prefix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: deepakputhraya/action-branch-name@master | |
with: | |
regex: '^(no-ticket/|renovate[-/]|hotfix/|IPB-[0-9]+/)' # start branch with either 'no-ticket/' or 'IPB-NUMBER/', allowing for bots and hotfixes | |
ignore: main |