[Bug]: Some components are missing "index" files (both .js and .d.ts), which breaks auto-complete #29
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 - Ready to be worked | |
on: | |
issues: | |
types: [unlabeled] | |
permissions: | |
issues: write | |
jobs: | |
add-comment: | |
name: Add comment to with proposal accepted and community contribution | |
runs-on: ubuntu-latest | |
if: | |
${{ ( | |
contains(github.event.label.name, 'design contribution needed') && | |
(!contains(github.event.issue.labels.*.name, 'development contribution | |
needed')) | |
) || ( | |
contains(github.event.label.name, 'development | |
contribution needed') && (!contains(github.event.issue.labels.*.name, | |
'design contribution needed')) | |
)}} | |
steps: | |
- name: Log github event | |
env: | |
$GITHUB_CONTEXT_LABELS: ${{ toJson(github.event.label) }} | |
run: echo "$GITHUB_CONTEXT_LABELS" | |
- 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: 'This issue is ready to be worked on. Volunteers, please feel free to join any of the [relevant meetups](https://carbondesignsystem.com/whats-happening/meetups/) to get guidance and feedback. We encourage you to bring any work in progress, no matter its state of completion. You can also ask any questions on slack. For design questions, the best channels are: [#carbon-design-system](https://ibm-studios.slack.com/archives/C0M053VPT) and [#figma-guild](https://ibm-studios.slack.com/archives/C023WKW6J5U). For developer questions, the best channels are: [#carbon-react](https://ibm-studios.slack.com/archives/C2K6RFJ1G), [#carbon-web-components](https://ibm-studios.slack.com/archives/CL83LMKSA).' | |
}) |