Skip to content

Commit

Permalink
feat: auto open pr for client updates (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh authored Dec 17, 2024
1 parent 97019d8 commit 506e357
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull Request on Branch Push
on:
push:
branches-ignore:
- main
tags-ignore:
- '*.'
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 506e357

Please sign in to comment.