mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-07-16 16:35:41 +00:00
Using `pinact run --update` <https://github.com/suzuki-shunsuke/pinact> Also: dependabot will continue functioning as usual, and it also knows how to update the version comments.
19 lines
535 B
YAML
19 lines
535 B
YAML
# This adds all new issues to the Taskwarrior project, for better tracking.
|
|
# It uses a PAT that belongs to @taskwarrior.
|
|
name: Add issues to Taskwarrior Project
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0
|
|
with:
|
|
project-url: https://github.com/orgs/GothenburgBitFactory/projects/4
|
|
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|