ci(pre-commit): 👷 update pre-commit CI version #108
Workflow file for this run
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
| name: Add to project board | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| - reopened | |
| - transferred | |
| pull_request: | |
| types: | |
| - reopened | |
| - opened | |
| # Limit token permissions for security | |
| permissions: read-all | |
| jobs: | |
| add-to-project: | |
| uses: seedcase-project/.github/.github/workflows/reusable-add-to-project.yml@main | |
| # Need write permissions to add PRs to the board | |
| permissions: | |
| pull-requests: write | |
| with: | |
| board-number: 12 | |
| app-id: ${{ vars.ADD_TO_BOARD_APP_ID }} | |
| secrets: | |
| add-to-board-token: ${{ secrets.ADD_TO_BOARD }} | |
| gh-token: ${{ secrets.GITHUB_TOKEN }} |