-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: testing enhancement github bot (#14378)
- Loading branch information
1 parent
b4a65d6
commit 38bb5ff
Showing
2 changed files
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Configuration for Label Actions - https://github.com/dessant/label-actions | ||
|
||
# The `enhancement` label is added to issues | ||
enhancement: | ||
# Post a comment | ||
comment: > | ||
Thank you for submitting a feature request. Here’s what to expect next. | ||
Your proposal is open and is now being [triaged](https://github.com/orgs/carbon-design-system/projects/51/views/1) by the Carbon team. | ||
If your proposal is accepted and the Carbon team has bandwidth they will take on the issue, or else request volunteers from the community. | ||
Read the full triaging workflow [here](https://github.com/carbon-design-system/carbon/blob/main/docs/guides/support.md#type-enhancement-). | ||
# Option to lock the thread | ||
lock: false |
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,16 @@ | ||
name: Contribution Buddy | ||
# This workflow is triggered when a label is added to an issue. | ||
on: | ||
issues: | ||
types: labeled | ||
|
||
jobs: | ||
action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/label-actions@v3 | ||
with: | ||
github-token: ${{ github.token }} | ||
config-path: '.github/label-actions.yml' | ||
process-only: 'issues' | ||
|