revanced-patches/.github/workflows/open_pull_request.yml

33 lines
759 B
YAML
Raw Normal View History

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:
2023-01-13 14:41:17 +01:00
name: Open pull request
runs-on: ubuntu-latest
steps:
- name: Checkout
2023-09-27 18:02:48 +02:00
uses: actions/checkout@v4
2023-11-22 00:04:12 +01:00
- 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 }}.
2024-09-30 22:08:45 +02:00
## Before merging this PR
2024-09-30 22:08:45 +02:00
- [ ] Remember about https://github.com/revanced/revanced-integrations
- [ ] Pull translations from Crowdin
pr_draft: true