We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ae0ac commit 4b9ca86Copy full SHA for 4b9ca86
1 file changed
.github/workflows/update-upstream-branches.yml
@@ -0,0 +1,28 @@
1
+name: "Update upstream branches"
2
+on:
3
+ schedule:
4
+ - cron: "0 0 * * *" # every night at midnight
5
+ workflow_dispatch:
6
+
7
+jobs:
8
+ PullUpstream:
9
+ strategy:
10
+ fail-fast: false # run all jobs in the matrix even if one fails
11
+ matrix:
12
+ branch:
13
+ - "master"
14
+ - "backports-release-1.10"
15
+ - "backports-release-1.9"
16
+ steps:
17
+ - name: Checkout RAI/julia
18
+ uses: actions/checkout@v3
19
+ with:
20
+ ref: RelationalAI/julia
21
+ - name: Update ${{ branch }}
22
+ run: |
23
+ git config --global user.email "julia-engineering@relational.ai"
24
+ git config --global user.name "RAI CI (GitHub Action Automation)"
25
26
+ git remote add upstream https://github.com/JuliaLang/julia
27
+ git pull upstream ${{ branch }}
28
+ git push origin ${{ branch }}
0 commit comments