From Fork #1
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: Create Commit Status | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| create-commit-status: | |
| name: Create Commit Status | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Analyze content.txt | |
| id: analyze | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const createCommitStatus = require('./.github/workflows/scripts/create-commit-status.js') | |
| await createCommitStatus({ github, context, core }); |