Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed Apr 15, 2024
1 parent 0f77918 commit ac9bd24
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/auto-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches:
- "fix/*"
- "feat/*"
- "ci/*"
- "chore/*"
- "refactor/*"
- "style/*"
- "perf/*"
- "test/*"
- "docs/*"

permissions:
pull-requests: write

jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create Pull Request
run: |
prefix=$(echo $GITHUB_REF | cut -d '/' -f 3)
branch_name=$(echo $GITHUB_REF | cut -d '/' -f 4- | tr '-' ' ')
gh pr create --title "${branch_type}: ${branch_name}" --body "Description"

0 comments on commit ac9bd24

Please sign in to comment.