-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (37 loc) · 1.2 KB
/
update-internal-repo.yaml
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
name: Update Internal GHE Repo
on:
push:
branches:
- '**'
tags-ignore:
- '**'
env:
GITHUB_BRANCH: ${{ github.ref_name }}
REMOTE_REPO: automation-paas-cd-pipeline/mas-gitops
jobs:
update-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout local repo
uses: actions/checkout@v4
with:
path: source
- name: Checkout remote repo
uses: actions/checkout@v4
with:
github-server-url: https://github.ibm.com
repository: ${{ env.REMOTE_REPO }}
ref: ${{ env.GITHUB_BRANCH }}
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
path: target
- name: Copy over files
if: ${{ success() }}
run: $GITHUB_WORKSPACE/source/build/bin/copy-gitops.sh -s $GITHUB_WORKSPACE/source -t $GITHUB_WORKSPACE/target
- name: Commit changes to remote repo
if: ${{ success() }}
run: |
cd $GITHUB_WORKSPACE/target
git config user.name "GitHub Actions Bot"
git config user.email "<>"
echo "Push changes to ${{ env.GITHUB_BRANCH }} branch of https://github.ibm.com/${{ env.REMOTE_REPO }}"
git push origin ${{ env.GITHUB_BRANCH }}