fix: allow prefix #9
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
jobs: | |
pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Create Pull Request | |
# Creates a PR from current branch to master | |
run: | | |
gh pr create --base master --head ${GITHUB_REF} --fill | |
name: Create Pull Request | |
on: | |
push: | |
branches: | |
- "translation/*" | |
- "update/*" |