forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync-develop-from-smartcontractkit-chainlink.yml
More file actions
31 lines (28 loc) · 1.21 KB
/
sync-develop-from-smartcontractkit-chainlink.yml
File metadata and controls
31 lines (28 loc) · 1.21 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
name: Sync develop from smartcontractkit/chainlink
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '*/30 * * * *'
jobs:
sync:
name: Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: true
ref: develop
if: env.GITHUB_REPOSITORY != 'smartcontractkit/chainlink'
- name: Sync
run: |
git remote add upstream "https://github.com/smartcontractkit/chainlink.git"
COMMIT_HASH_UPSTREAM=$(git ls-remote upstream develop | grep -P '^[0-9a-f]{40}\trefs/heads/develop$' | cut -f 1)
COMMIT_HASH_ORIGIN=$(git ls-remote origin develop | grep -P '^[0-9a-f]{40}\trefs/heads/develop$' | cut -f 1)
if [ "$COMMIT_HASH_UPSTREAM" = "$COMMIT_HASH_ORIGIN" ]; then
echo "Both remotes have develop at $COMMIT_HASH_UPSTREAM. No need to sync."
else
echo "upstream has develop at $COMMIT_HASH_UPSTREAM. origin has develop at $COMMIT_HASH_ORIGIN. Syncing..."
git fetch upstream
git push origin upstream/develop:develop
fi
if: env.GITHUB_REPOSITORY != 'smartcontractkit/chainlink'