Skip to content

Commit

Permalink
ci(workflow): add default needs repro text (#1455)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Maurer <[email protected]>
  • Loading branch information
danielleroux and nuke-ellington authored Sep 4, 2024
1 parent 5acd52a commit f2622bd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/issue-needs-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: needs reproduction labeling

on:
issues:
types: [labeled]

jobs:
comment-issue:
if: ${{ github.repository == 'siemens/ix' }}
runs-on: ubuntu-latest
steps:
- name: Needs reproduction comment created
if: "contains(github.event.label.name, 'needs reproduction')"
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
body: |
Thank you for creating this issue! It has been labeled as `needs reproduction`.
To help us assist you better, could you please provide a way for us to access the code (such as a GitHub repository or a StackBlitz link). Without a reliable code reproduction, it might be challenging for us to resolve the issue, and we may have to close it.
Thank you for your understanding!

0 comments on commit f2622bd

Please sign in to comment.