ci: Split release into a separate PR build workflow

Because the release workflow already runs on dev and main, it is not necessary to also trigger it for PRs.
This commit is contained in:
oSumAtrIX
2024-02-21 22:29:44 +01:00
parent ba75a51b71
commit 930dc297c1
3 changed files with 23 additions and 4 deletions

31
.github/workflows/open_pull_request.yml vendored Normal file
View File

@ -0,0 +1,31 @@
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 }}.
## Dependencies before merge
- [ ] https://github.com/revanced/revanced-integrations
pr_draft: true