mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
846afb420b
Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
28 lines
649 B
YAML
28 lines
649 B
YAML
name: Open a PR to main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
MESSAGE: Merge branch `${{ github.head_ref || github.ref_name }}` to `main`
|
|
|
|
jobs:
|
|
pull-request:
|
|
name: Open pull request
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- 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
|
|
github_token: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|