-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathauto-sync-master-with-develop.yml
More file actions
44 lines (35 loc) · 1.08 KB
/
auto-sync-master-with-develop.yml
File metadata and controls
44 lines (35 loc) · 1.08 KB
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
name: 'Auto Sync `master` with `develop`'
on:
push:
branches:
- develop
permissions:
contents: write
jobs:
sync-branches:
if: ( startsWith(github.event.head_commit.message, '[RELEASE]') )
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v2
id: app-token
with:
app-id: ${{ vars.AUTO_SYNC_BRANCHES_APP_ID }}
private-key: ${{ secrets.AUTO_SYNC_BRANCHES_SECRET }}
- name: Checkout Master
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Merge Release Commit to Master
run: |
git fetch origin develop
git merge --ff-only ${{ github.sha }}
- name: Push Changes to Master
run: git push origin master
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}