We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3856ac + 6822165 commit 7deababCopy full SHA for 7deabab
template/.github/workflows/copier.yml
@@ -0,0 +1,25 @@
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
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.
0 commit comments