-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
6,586 additions
and
1,940 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
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 }}.' | ||
pr_draft: true |
Oops, something went wrong.