Skip to content

Commit

Permalink
feat: automatically open mr on client updates
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh committed Jul 9, 2024
1 parent e76ef69 commit 14154ad
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/auto-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pull Request on Branch Push
on:
push:
branches-ignore:
- main
jobs:
auto-pull-request:
name: Open pull request on new branch
runs-on: ubuntu-latest
steps:
- name: pull-request-action
uses: vsoch/pull-request-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_PREFIX: 'feat/update-client'
PULL_REQUEST_BRANCH: 'main'
PULL_REQUEST_UPDATE: true
PASS_IF_EXISTS: true

0 comments on commit 14154ad

Please sign in to comment.