[a11y]: <div class='bx--data-table-content'>
is scrollable but not tabbable
#154
This file contains 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: Contribution triage - proposal not pursuing | |
on: | |
issues: | |
types: [labeled, opened] | |
permissions: | |
issues: write | |
jobs: | |
add-comment: | |
name: | |
If proposal is marked as not pursuing, then post the following comment. | |
runs-on: ubuntu-latest | |
if: | |
${{ contains(github.event.label.name, format('proposal{0} not pursuing', | |
':')) }} | |
steps: | |
- name: Add comment | |
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 #v6.4.1 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Thank you for submitting your proposal. Unfortunately, it doesn't align with our roadmap or philosophy at this time. We value your contribution and encourage you to keep engaging with the community. For more information about our triage workflow and philosophy, please visit [here](https://github.com/carbon-design-system/carbon/blob/main/docs/guides/support.md#type-enhancement-).' | |
}) |