File tree 2 files changed +25
-50
lines changed
template/.github/workflows
2 files changed +25
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Copier template sync
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ schedule :
6
+ - cron : ' 0 1 * * 1'
7
+
8
+ jobs :
9
+ update :
10
+ name : Sync with copier template
11
+ runs-on : ' ubuntu-latest'
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-python@v5
15
+ with :
16
+ python-version : ' 3.X'
17
+ - run : pip install copier
18
+ - run : copier update --skip-answered --vcs-ref=HEAD --conflict=rej
19
+ - name : Create Pull Request
20
+ uses : peter-evans/create-pull-request@v6
21
+ with :
22
+ title : ' [CRON] Sync with copier template'
23
+ body : |
24
+ This PR updates the project to the latest version of scipp's [copier-template](https://github.com/scipp/copier_template).
25
+ Remember to check for any conflicts and resolve them.
You can’t perform that action at this time.
0 commit comments