-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(workflow): add default needs repro text (#1455)
Co-authored-by: Lukas Maurer <[email protected]>
- Loading branch information
1 parent
5acd52a
commit f2622bd
Showing
1 changed file
with
22 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,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! |