Skip to content

Commit

Permalink
ci: open pull requests to merge dev to main (ReVanced#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Dec 11, 2022
1 parent 8a1199b commit b3cf32e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: PR to main

on:
push:
branches:
- dev
workflow_dispatch:

env:
MESSAGE: merge branch \`${{ github.head_ref || github.ref_name }}\` to \`main\`

jobs:
pull-request:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Open pull request
uses: repo-sync/pull-request@v2
with:
destination_branch: 'main'
pr_title: 'chore: ${{ env.MESSAGE }}'
pr_body: 'This pull request will ${{ env.MESSAGE }}.'
pr_draft: true

0 comments on commit b3cf32e

Please sign in to comment.