2023-09-23 18:17:48 +02:00
|
|
|
name: Open a PR to main
|
2022-12-11 05:16:51 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2023-09-23 18:17:48 +02:00
|
|
|
MESSAGE: Merge branch `${{ github.head_ref || github.ref_name }}` to `main`
|
2022-12-11 05:16:51 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
pull-request:
|
2023-01-13 14:41:18 +01:00
|
|
|
name: Open pull request
|
2022-12-11 05:16:51 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- 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
|