-
Notifications
You must be signed in to change notification settings - Fork 176
58 lines (50 loc) · 1.76 KB
/
sync_opal_plus.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
54
55
56
57
58
name: Sync master to OPAL Plus
on:
push:
branches:
- sync-test
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Set up Git configuration
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Get Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v1
with:
application_id: ${{ secrets.APPLICATION_ID }}
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
- name: Checkout permitio/opal repository
uses: actions/checkout@v4
with:
repository: permitio/opal
ref: sync-test
path: opal
fetch-depth: 0
- name: Checkout permitio/opal-plus repository
uses: actions/checkout@v4
with:
repository: permitio/opal-plus
ref: public-master
path: opal-plus
token: ${{ steps.get_workflow_token.outputs.token }}
- name: Rebase opal-plus:public-master onto opal:master
working-directory: opal-plus
run: |
git remote add opal ../opal
git fetch opal
git checkout public-master
git rebase opal/sync-test
- name: Push changes to opal-plus public-master branch
working-directory: opal-plus
run: |
git push origin public-master
- name: Create Pull Request for opal-plus
run: |
gh pr create --assignee @me --reviewer "$GITHUB_ACTOR" --base sync-test --head public-master --title "Sync changes from public OPAL repository" --fill-verbose
env:
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }}