fix(skills): correct misattributions, renamed brands and one fabricated citation (W1-e) #252
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: Lint skills | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Validate catalog structure | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install pyyaml | |
| - name: Fetch brand watchlist (private) | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository | |
| env: | |
| LINT_CONFIG_TOKEN: ${{ secrets.LINT_CONFIG_TOKEN }} | |
| run: | | |
| set -euo pipefail | |
| test -n "${LINT_CONFIG_TOKEN:-}" | |
| curl -fsSL \ | |
| -H "Authorization: Bearer $LINT_CONFIG_TOKEN" \ | |
| -H "Accept: application/vnd.github.raw" \ | |
| "https://api.github.com/repos/rampstack/lint-config/contents/brand-watchlist.txt?ref=v1" \ | |
| -o "$RUNNER_TEMP/brand-watchlist.txt" | |
| echo "BRAND_WATCHLIST_FILE=$RUNNER_TEMP/brand-watchlist.txt" >> "$GITHUB_ENV" | |
| - name: Skip brand watchlist on fork PR | |
| if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository | |
| run: | | |
| echo "Fork PR: repository secrets are unavailable, so the brand watchlist" | |
| echo "check is skipped here. The push-to-main run is the enforcing backstop." | |
| echo "ALLOW_MISSING_BRAND_WATCHLIST=1" >> "$GITHUB_ENV" | |
| - name: Run skill linter | |
| run: python .github/scripts/lint_skills.py |