forked from openjdk/jdk
-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (32 loc) · 939 Bytes
/
dd-sync.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
# .github/workflows/sync-upstream.yml
name: Sync Upstream
on:
schedule:
- cron: '22 14 * * *' # Runs every day at 14:15 UTC
workflow_dispatch:
permissions:
contents: write
actions: read
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- name: Pull latest changes from upstream
run: |
git config --global user.email "sync@datadoghq.com"
git config --global user.name "Datadog Syncup Service"
git remote add upstream https://github.com/openjdk/jdk.git
git fetch upstream
git checkout -b upstream-master upstream/master
git checkout master
git merge upstream-master
- name: Push changes to downstream
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GH_PAT }}
branch: master