Skip to content

Commit

Permalink
Merge pull request #18 from python-project-templates/tkp/copierupdate
Browse files Browse the repository at this point in the history
Add copier autoupdater
  • Loading branch information
timkpaine authored Oct 8, 2024
2 parents b569c29 + 785abaf commit 33cc159
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cpp/.github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Copier Updates

on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 0"

jobs:
update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions-ext/copier-update@main
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
17 changes: 17 additions & 0 deletions js/.github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Copier Updates

on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 0"

jobs:
update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions-ext/copier-update@main
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
17 changes: 17 additions & 0 deletions jupyter/.github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Copier Updates

on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 0"

jobs:
update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions-ext/copier-update@main
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
17 changes: 17 additions & 0 deletions python/.github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Copier Updates

on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 0"

jobs:
update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions-ext/copier-update@main
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
17 changes: 17 additions & 0 deletions rust/.github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Copier Updates

on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 0"

jobs:
update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions-ext/copier-update@main
with:
token: ${{ secrets.WORKFLOW_TOKEN }}

0 comments on commit 33cc159

Please sign in to comment.