docs: document tsforge /scaffold → Phaser (#45) #15
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: security-scorecard | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: '0 9 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| scorecard: | |
| name: OpenSSF Scorecard | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| permissions: | |
| security-events: write | |
| id-token: write | |
| contents: read | |
| actions: read | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4 | |
| with: | |
| results_file: scorecard-results.sarif | |
| results_format: sarif | |
| publish_results: true | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: scorecard-results | |
| path: scorecard-results.sarif | |
| retention-days: 5 | |
| # Full Scorecard still publishes to scorecard.dev. These checks cannot | |
| # reach 10 on a one-maintainer org (no second reviewer, CII badge signup, | |
| # historical CI/SAST coverage, fuzzing). Strip them from the GitHub | |
| # code-scanning upload so weekly runs do not reopen accepted risk. | |
| - name: Filter residual Scorecard rules from code scanning | |
| run: | | |
| jq ' | |
| .runs |= map( | |
| .results |= map( | |
| select( | |
| .ruleId as $id | |
| | ["CodeReviewID", "CIIBestPracticesID", "SASTID", "CITestsID", "FuzzingID", "BranchProtectionID"] | |
| | index($id) | |
| | not | |
| ) | |
| ) | |
| ) | |
| ' scorecard-results.sarif > scorecard-results.code-scanning.sarif | |
| - uses: github/codeql-action/upload-sarif@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4.37.8 | |
| with: | |
| sarif_file: scorecard-results.code-scanning.sarif |