Project Board Backfill #110
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: Apache-2.0 | |
| # Trigger manually from the Actions tab, or let it run on a schedule. | |
| # Requires a fine-grained PAT (or classic PAT with `project` scope) stored | |
| # in the repo secret PROJECT_TOKEN. | |
| name: Project Board Backfill | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 6 * * *" | |
| permissions: | |
| contents: read | |
| jobs: | |
| backfill: | |
| uses: lpasquali/rune-ci/.github/workflows/project-backfill-logic.yml@144ef855dbf0420e5d9a8de2c8d8f89c2e789265 | |
| secrets: | |
| PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }} |