2023-09-23 18:17:46 +02:00
|
|
|
name: Open a PR to main
|
2022-12-11 04:53:14 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2023-09-23 18:17:46 +02:00
|
|
|
MESSAGE: Merge branch `${{ github.head_ref || github.ref_name }}` to `main`
|
2022-12-11 04:53:14 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
pull-request:
|
2023-01-13 14:41:17 +01:00
|
|
|
name: Open pull request
|
2022-12-11 04:53:14 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-27 18:02:48 +02:00
|
|
|
uses: actions/checkout@v4
|
2022-12-11 04:53:14 +01:00
|
|
|
- name: Open pull request
|
|
|
|
uses: repo-sync/pull-request@v2
|
|
|
|
with:
|
|
|
|
destination_branch: 'main'
|
|
|
|
pr_title: 'chore: ${{ env.MESSAGE }}'
|
2023-03-19 22:58:16 +01:00
|
|
|
pr_body: |
|
|
|
|
This pull request will ${{ env.MESSAGE }}.
|
|
|
|
|
|
|
|
## Dependencies before merge
|
|
|
|
|
2023-04-06 13:44:42 +02:00
|
|
|
- [ ] https://github.com/revanced/revanced-integrations
|
2022-12-11 04:53:14 +01:00
|
|
|
pr_draft: true
|