Skip to content

Commit

Permalink
Merge branch 'main' into edit-tearsheet-form-typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioBecerra authored May 20, 2024
2 parents 0b813d2 + 5d7208f commit 98d1456
Show file tree
Hide file tree
Showing 204 changed files with 5,988 additions and 3,105 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/accessibility-issue.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Accessibility Issue ♿
description: Report an accessibility or usability issue.
title: '[a11y]: '
labels: 'type: a11y ♿'
labels: ['type: a11y ♿', 'status: needs triage 🕵️‍♀️']
body:
- type: markdown
attributes:
Expand Down
128 changes: 0 additions & 128 deletions .github/ISSUE_TEMPLATE/accessibilty-review.md

This file was deleted.

37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/component-or-pattern.md

This file was deleted.

36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/design-review.md

This file was deleted.

36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/dev-issue.md

This file was deleted.

21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/question.md

This file was deleted.

53 changes: 53 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yaml
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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Contributes to #
Closes #

{{short description}}

Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/add-triage-label.yml
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 🕵️‍♀️'
Loading

0 comments on commit 98d1456

Please sign in to comment.