Skip to content

Commit

Permalink
Create branch-naming-scheme.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robmart committed Sep 17, 2024
1 parent ad09938 commit f82eac6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/branch-naming-scheme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Branch Naming Policy Action

on:
create:
delete:
pull_request:
branches:
- dev

jobs:
branch-naming-policy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run Branch Naming Policy Action
uses: nicklegan/github-repo-branch-naming-policy-action@v1.1.1
if: github.ref_type == 'branch' || github.ref_type == 'pull_request'
with:
token: ${{ secrets.GITHUB_TOKEN }}
regex: '^(feat|fix)\/(mixed|code|2D|3D|map|char|l10n|magic)\/([a-z0-9]+)'
flags: i
# token: ${{ secrets.REPO_TOKEN }}
# delete: true

0 comments on commit f82eac6

Please sign in to comment.