mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-12 01:17:39 +01:00
035dbe4901
3 months of inactivity Bot posts a comment to remind about it and assigns a stale label No further activity - 5 work days passes bot closes the issue
17 lines
597 B
YAML
17 lines
597 B
YAML
# When a new comment is added to an issue, if it had the Stale or Awaiting User Response labels, then those labels will be removed
|
|
|
|
name: 🎯 Remove Pending Labels on Close
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
jobs:
|
|
remove-labels:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Remove Labels when Closed
|
|
uses: actions-cool/issues-helper@v2
|
|
with:
|
|
actions: remove-labels
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
|
issue-number: ${{ github.event.issue.number }}
|
|
labels: '🚏 Awaiting User Response,⚰️ Stale,👤 Awaiting Maintainer Response' |