2024-06-16 11:17:34 +00:00
name : Label Based Actions
2024-05-19 13:20:42 +00:00
on :
issues :
types : [ labeled]
2024-06-16 11:17:34 +00:00
# pull_request:
# types: [labeled]
2024-05-19 13:20:42 +00:00
jobs :
reply-labeled :
runs-on : ubuntu-latest
steps :
2024-06-16 11:17:34 +00:00
# - name: remove pending
# if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug'
# uses: actions-cool/issues-helper@v3
# with:
# actions: "remove-labels"
# token: ${{ secrets.ACCESS_TOKEN }}
# issue-number: ${{ github.event.issue.number }}
# labels: "bug: pending triage"
2024-05-19 13:20:42 +00:00
2024-06-16 11:17:34 +00:00
- name : needs reproduction
if : github.event.label.name == 'needs reproduction'
uses : actions-cool/issues-helper@v3
2024-05-19 13:20:42 +00:00
with :
actions : "create-comment, remove-labels"
2024-06-16 11:17:34 +00:00
token : ${{ secrets.ACCESS_TOKEN }}
2024-05-19 13:20:42 +00:00
issue-number : ${{ github.event.issue.number }}
body : |
2024-06-16 11:17:34 +00:00
Hello @${{ github.event.issue.user.login }}. Please provide the complete reproduction steps and code. Issues labeled by `needs reproduction` will be closed if no activities in 3 days.
2024-05-19 13:20:42 +00:00
labels : "bug: pending triage"