[List]: LIST_ROLE_DESCRIPTION ("List with interactive items. To move to the content press F2.") is announced by screen readers even when all list items are type="Inactive" #505
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: Issue - comment on close | |
| on: | |
| issues: | |
| types: [closed] | |
| permissions: | |
| issues: write | |
| jobs: | |
| comment-on-close: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Comment on closed issue | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: "This issue has been closed. To reopen, just leave a comment!" | |
| }) |