Skip to content

[Bug]: danger-ghost icon button is missaligned #23

[Bug]: danger-ghost icon button is missaligned

[Bug]: danger-ghost icon button is missaligned #23

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-).'
})