my-skill-creatorを複数クライアント対応に更新 #109
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: check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| schedule: | |
| # Weekly staleness sweep (Sat 06:00 JST) so rot is caught even | |
| # without new commits. | |
| - cron: "0 21 * * 5" | |
| jobs: | |
| stale-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Detect stale repo content | |
| run: bash scripts/check-stale.sh | |
| - name: Test RTK rewrite hook guards | |
| run: bash scripts/test-rtk-rewrite-hook.sh | |
| - name: Test my-pr worktree transfer | |
| run: bash scripts/test-my-pr-worktree-move.sh | |
| - name: Test mise upgrade wrapper | |
| run: | | |
| command -v jq >/dev/null | |
| bash scripts/test-dotfiles-mise-up.sh | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run pre-commit hooks on all files | |
| run: pipx run pre-commit run --all-files --show-diff-on-failure |