fix: add Long descriptions and fix stale command name in docs examples #13
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
| # Workflow to run our AI Detection action | |
| # https://github.com/chaoss/disclosure/blob/main/action/action.yml | |
| name: Run AI Detection action locally in repo | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| # pr and issue write access is needed by the ai detection action | |
| # to add a label to the pr, in this step: | |
| # https://github.com/chaoss/disclosure/blob/main/action/action.yml#L95-L99 | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| run-ai-detection-action: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| # we get commit history from base as its needed by the AI detection action | |
| fetch-depth: 0 | |
| - name: Run AI detection action | |
| uses: ./action |