Align Zicbom cache-block management faults with the CMO chapter #1744
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: Label "Clarification" on Comment | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| label_issue: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| if: startsWith(github.event.comment.body, '/clarification') | |
| steps: | |
| - name: Add Clarification Label | |
| uses: actions/github-script@v9 | |
| with: | |
| script: | | |
| github.rest.issues.addLabels({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| labels: ['Clarification'] | |
| }) |