Combiner health check is now fixed by increasing the interval time fr… #1209
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 check" | |
on: | |
push: | |
branches-ignore: | |
- develop | |
- master | |
env: | |
BRANCH_REGEX: '^((feature|hotfix|bugfix|bug|docs|refactor)\/.+)|(release\/v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?))$' | |
jobs: | |
branch-name-check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: branch name check | |
run: | | |
git rev-parse --abbrev-ref HEAD | grep -P "$BRANCH_REGEX" |