-
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.
Close issue ticket automatically if "support/feature request" label f…
…ound (#2283) * close issue ticket automatically if "support/feature request" label found * renovate supported
- Loading branch information
1 parent
6bcecc0
commit 8ed9e2e
Showing
2 changed files
with
52 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,34 @@ | ||
feature request: | ||
comment: > | ||
Thank you for opening a Dynatrace Operator Issue. We've identified and tagged the issue as a "**Feature request**". | ||
Dynatrace reviews feature requests in the [Dynatrace community](https://community.dynatrace.com/) rather than Github. This helps our team consolidate, rank, and prioritize important input like yours. | ||
Please search for similar requests, collaborate, and ask questions using the link above. Remember to add the labels "kubernetes" and "dynatrace-operator" to help get the attention you deserve. | ||
Thanks for your help! | ||
close: true | ||
|
||
-feature request: | ||
comment: > | ||
It isn't a "Feature request". | ||
reopen: true | ||
|
||
support request: | ||
comment: > | ||
Thank you for opening a Dynatrace Operator Issue. We've identified and tagged the issue as a "**Support request**". | ||
Dynatrace responds to requests like these via [Dynatrace ONE support](https://support.dynatrace.com/) rather than Github. This helps our team respond as quickly as possible using the support team's tools and procedures. | ||
Thanks for your help! | ||
close: true | ||
|
||
-support request: | ||
comment: > | ||
It isn't a "Support request". | ||
reopen: true |
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: 'Label Actions' | ||
|
||
on: | ||
issues: | ||
types: [labeled, unlabeled] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toshimaru/label-actions@49ad9ba292048df336e074755a488583a65e5b10 # v1.3.0 | ||
with: | ||
github-token: ${{ github.token }} | ||
config-path: '.github/label-actions.yaml' | ||
process-only: 'issues' |