mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-11 13:56:16 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
575 B
YAML
27 lines
575 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@v6
|
|
|
|
- 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
|