Refactor /lwot into separate planning and execution prompts #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
| name: Pac label health | |
| on: | |
| issues: | |
| types: [opened, reopened, edited, labeled, unlabeled] | |
| workflow_dispatch: | |
| inputs: | |
| issue_number: | |
| description: Issue number to check | |
| required: true | |
| type: number | |
| permissions: | |
| contents: read | |
| issues: write | |
| concurrency: | |
| group: pac-label-health-${{ github.repository }}-${{ github.event.issue.number || inputs.issue_number }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.issue.number || inputs.issue_number }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| - run: npm ci | |
| - name: Check pac issue labels | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number || inputs.issue_number }} | |
| run: node --experimental-strip-types scripts/pac-label-health.ts |