[Dynamic Page]: Accessibility tag 'banner "Header Expanded"' is always shown regardless corresponding functionality visible or not #259
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: Comment on Closing Issue | |
on: | |
issues: | |
types: [closed] | |
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!" | |
}) |