File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -33,5 +33,6 @@ codecov.yml export-ignore
33
33
# Perform substitutions when `git export`ing these files
34
34
.VERSION export-subst
35
35
36
- .github /workflows /fpm-deployment.yml
37
- .github /workflows /sync.yml
36
+ # -- keep these files on merge
37
+ config /fypp_deployment.py merge =ours
38
+ .github /workflows /* merge =ours
Original file line number Diff line number Diff line change 1
- name : sync stdlib + enable XDP and QP
1
+ name : sync most of the fork with upstream stdlib
2
+
3
+ # permissions:
4
+ # contents: write
2
5
3
6
on :
4
7
schedule :
@@ -19,10 +22,12 @@ jobs:
19
22
git remote add upstream https://github.com/fortran-lang/stdlib.git
20
23
git fetch upstream
21
24
22
- git checkout -B master upstream/master
25
+ - name : merge upstream/master
26
+ run : |
27
+ git merge upstream/master --allow-unrelated-histories --no-edit
23
28
24
29
- name : commit & push
25
30
run : |
26
31
git config user.name "github-actions[bot]"
27
32
git config user.email "github-actions[bot]@users.noreply.github.com"
28
- git push --force origin master
33
+ git push origin master
You can’t perform that action at this time.
0 commit comments