Skip to content

Commit

Permalink
Close issue ticket automatically if "support/feature request" label f…
Browse files Browse the repository at this point in the history
…ound (#2283)

* close issue ticket automatically if "support/feature request" label found

* renovate supported
  • Loading branch information
aorcholski authored Oct 25, 2023
1 parent 6bcecc0 commit 8ed9e2e
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/label-actions.yaml
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
18 changes: 18 additions & 0 deletions .github/workflows/label-actions.yaml
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'

0 comments on commit 8ed9e2e

Please sign in to comment.