forked from Finschia/lfb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add an action creating pr (Finschia#29)
- Loading branch information
Woosang Son
authored
Oct 26, 2021
1 parent
bec3704
commit ca84f94
Showing
1 changed file
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Pull Request Action | ||
on: | ||
push: | ||
branches: | ||
- release/* | ||
|
||
jobs: | ||
create-pull-request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
|
||
- name: pull-request | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
destination_branch: "main" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
pr_label: "release branch updated, automated pr" | ||
pr_title: "fix: apply fix from release branch" |