Skip to content

Commit cd2c1ae

Browse files
committed
add copier updater
1 parent b9dc64d commit cd2c1ae

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes here will be overwritten by Copier
22
_commit: d84ab3c
3-
_src_path: .
3+
_src_path: https://github.com/python-project-templates/base.git
44
add_extension: python
55
66
github: python-project-templates

.github/workflows/copier.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
name: Copier Updates
3+
4+
on:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: "0 5 * * 0"
8+
9+
jobs:
10+
update:
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions-ext/copier-update@main
17+
with:
18+
token: ${{ secrets.WORKFLOW_TOKEN }}

0 commit comments

Comments
 (0)