-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2047 from woocommerce/dev/release-merge-pr
- Loading branch information
Showing
2 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
name: 'Merge the release to develop' | ||
run-name: Make a PR to merge the released `${{ github.head_ref }}` from `trunk` to `develop` | ||
|
||
# **What it does**: Creates a PR to merge `trunk` to `develop` after `prepare-extension-release`-based release is merged to `trunk`. | ||
# **Why we have it**: To automate the release process and follow the git-flow. | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
branches: | ||
- trunk | ||
|
||
jobs: | ||
MergeTrunkDevelopPR: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: woocommerce/grow/merge-trunk-develop-pr@actions-v1 |