Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Nov 19, 2024
1 parent 2a73cba commit 1ec4f9c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 25 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/comment_by_label.yml

This file was deleted.

35 changes: 33 additions & 2 deletions .github/workflows/issue-labeled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,43 @@ jobs:
issue-number: ${{ github.event.issue.number }}
body: |
We're unable to replicate your issue, if you are able to create a reproducer by using [PrimeNG Issue Template](https://stackblitz.com/github/primefaces/primeng-issue-template) or add details please edit this issue. This issue will be closed if no activities in 20 days.
- name: Needs Upvote
if: "${{ github.event.label.name == 'Resolution: Needs Upvote :+1:'}}"
if: contains(github.event.label.name, 'Needs Upvote')
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Thanks a lot for this issue! PrimeNG team's roadmap is busy, but community feedback is crucial in prioritization. The more upvotes help ensure this fix can be addressed quickly or the related PR can be merged soon.
- name: Needs More Information
if: contains(github.event.label.name, 'Needs More Information')
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
More information is needed to find a solution. A runnable StackBlitz example and additional details would be helpful.
- name: Wontfix
if: contains(github.event.label.name, 'Wontfix')
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Unfortunately, this issue cannot be fixed due to technical limitations. PrimeNg team has decided not to pursue a fix, as addressing it would introduce other complications. Thanks a lot for your understanding!
- name: Help Wanted
if: contains(github.event.label.name, 'Help Wanted')
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
body: |
Thanks a lot for this issue! PrimeNG team's roadmap is busy, but community feedback is crucial in prioritization. The more upvotes help ensure this fix can be addressed quickly or the related PR can be merged soon.
Due to PrimeNG team's busy roadmap, this issue is available for anyone to work on. **Make sure to reference this issue in your pull request.** :sparkles: Thank you for your contribution! :sparkles:

0 comments on commit 1ec4f9c

Please sign in to comment.