diff --git a/.github/workflows/todoist.yml b/.github/workflows/todoist.yml deleted file mode 100644 index 2f2526b..0000000 --- a/.github/workflows/todoist.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Sync GitHub → Todoist - -on: - issues: - types: [opened, reopened, assigned] - pull_request: - types: [opened, reopened, assigned] - schedule: - - cron: "0 3 * * *" # daily at 3am UTC - workflow_dispatch: - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Restore sync state - uses: actions/cache@v4 - with: - path: ./.todoist-sync.json - key: todoist-sync-${{ github.repository }} - restore-keys: | - todoist-sync-${{ github.repository }} - - - name: Sync issues and PRs to Todoist - uses: cobraz/todoist-action@v1 - with: - github-token: ${{ secrets.GH_TOKEN }} - todoist-token: ${{ secrets.TODOIST_TOKEN }} - query: repo:d-eniz/jupymd is:open - sync-file-name: ./.todoist-sync.json