-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
53 lines (48 loc) · 1.64 KB
/
gitflow-sync-develop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: "Gitflow: Sync master into develop"
on:
push:
branches:
- master
paths:
# When the version is updated on master (but nothing else)
- 'lerna.json'
- '!**/*.js'
- '!**/*.ts'
workflow_dispatch:
env:
SOURCE_BRANCH: master
TARGET_BRANCH: develop
jobs:
main:
name: Create PR master->develop
runs-on: ubuntu-20.04
permissions:
pull-requests: write
contents: write
steps:
- name: git checkout
uses: actions/checkout@v4
# https://github.com/marketplace/actions/github-pull-request-action
- name: Create Pull Request
id: open-pr
uses: repo-sync/pull-request@v2
with:
source_branch: ${{ env.SOURCE_BRANCH }}
destination_branch: ${{ env.TARGET_BRANCH }}
pr_title: '[Gitflow] Merge ${{ env.SOURCE_BRANCH }} into ${{ env.TARGET_BRANCH }}'
pr_body: 'Merge ${{ env.SOURCE_BRANCH }} branch into ${{ env.TARGET_BRANCH }}'
pr_label: 'Dev: Gitflow'
# This token is scoped to Daniel Griesser
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
- name: Enable automerge for PR
if: steps.open-pr.outputs.pr_number != ''
run: gh pr merge --merge --auto "${{ steps.open-pr.outputs.pr_number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.com/marketplace/actions/auto-approve
- name: Auto approve PR
if: steps.open-pr.outputs.pr_number != ''
uses: hmarr/auto-approve-action@v4
with:
pull-request-number: ${{ steps.open-pr.outputs.pr_number }}
review-message: 'Auto approved automated PR'