-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into edit-tearsheet-form-typescript
- Loading branch information
Showing
204 changed files
with
5,988 additions
and
3,105 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Question 🤔 | ||
description: | ||
Usage question or discussion about @carbon/ibm-products (previously | ||
@carbon/ibm-cloud-cognitive) components | ||
title: '[YOUR TITLE]: Brief description' | ||
labels: ['type: question ❓', 'status: needs triage 🕵️♀️'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: '## Question 🤔' | ||
- type: markdown | ||
attributes: | ||
value: "Hi there! 👋 Hope everything is going okay using projects from @carbon/ibm-products. It looks like you might have a question about our work, so we wanted to share a couple resources that you could use if you haven't tried them yet 🙂." | ||
- type: markdown | ||
attributes: | ||
value: "If you're an IBMer, we have a couple of Slack channels available across all IBM Workspaces:" | ||
- type: markdown | ||
attributes: | ||
value: "- #ibmproducts-pal for design questions around the @carbon/ibm-products components | ||
- #ibmproducts-pal-dev for development questions around the @carbon/ibm-products components" | ||
- type: markdown | ||
attributes: | ||
value: "If these resources don't work out, help us out by filling out a couple of details below!" | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Summary | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: relevant-information | ||
attributes: | ||
label: Relevant information | ||
- type: textarea | ||
id: organization | ||
attributes: | ||
label: Name and organization | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: Please confirm the following | ||
options: | ||
- label: | ||
I agree to follow this project's [Code of | ||
Conduct](https://github.com/carbon-design-system/ibm-products/blob/main/.github/CODE_OF_CONDUCT.md) | ||
required: true | ||
- label: | ||
I checked the [current | ||
issues](https://github.com/carbon-design-system/ibm-products/issues) for | ||
duplicate issues |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Contributes to # | ||
Closes # | ||
|
||
{{short description}} | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Add triage label to opened/reopened issues | ||
on: | ||
issues: | ||
types: | ||
- reopened | ||
- opened | ||
jobs: | ||
label_issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- run: gh issue edit "$NUMBER" --add-label "$LABELS" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
NUMBER: ${{ github.event.issue.number }} | ||
LABELS: 'status: needs triage 🕵️♀️' |
Oops, something went wrong.