mirror of https://github.com/Lissy93/dashy.git
🏗️ Apply or remove label when waiting for response
This commit is contained in:
parent
68f02e3b56
commit
2162424ad0
|
@ -13,7 +13,7 @@ jobs:
|
||||||
uses: actions/stale@v4
|
uses: actions/stale@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
days-before-stale: 42
|
days-before-stale: 30
|
||||||
days-before-close: 5
|
days-before-close: 5
|
||||||
operations-per-run: 30
|
operations-per-run: 30
|
||||||
remove-stale-when-updated: true
|
remove-stale-when-updated: true
|
||||||
|
@ -41,9 +41,9 @@ jobs:
|
||||||
uses: actions/stale@v4
|
uses: actions/stale@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
days-before-stale: 7
|
days-before-stale: 5
|
||||||
days-before-close: 3
|
days-before-close: 3
|
||||||
operations-per-run: 10
|
operations-per-run: 30
|
||||||
remove-stale-when-updated: true
|
remove-stale-when-updated: true
|
||||||
stale-issue-message: >
|
stale-issue-message: >
|
||||||
Hello! Looks like additional info is required for this issue to be addressed.
|
Hello! Looks like additional info is required for this issue to be addressed.
|
||||||
|
@ -55,3 +55,25 @@ jobs:
|
||||||
close-issue-label: '🕸️ Inactive'
|
close-issue-label: '🕸️ Inactive'
|
||||||
exempt-issue-labels: '📌 Keep Open'
|
exempt-issue-labels: '📌 Keep Open'
|
||||||
exempt-pr-labels: '📌 Keep Open'
|
exempt-pr-labels: '📌 Keep Open'
|
||||||
|
|
||||||
|
# Comment on issues that I should have replied to
|
||||||
|
- name: Notify Repo Owner to Respond
|
||||||
|
uses: actions/stale@v4
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
days-before-stale: 7
|
||||||
|
days-before-close: 365
|
||||||
|
operations-per-run: 30
|
||||||
|
remove-stale-when-updated: true
|
||||||
|
stale-issue-message: Hey @Lissy93 - Don't forget to respond!
|
||||||
|
stale-pr-message: Hey @Lissy93 - Don't forget to respond!
|
||||||
|
only-labels: '👤 Awaiting Maintainer Response'
|
||||||
|
labels-to-remove-when-unstale: '👤 Awaiting Maintainer Response'
|
||||||
|
close-issue-message: 'Closed due to no response from repo author for over a year'
|
||||||
|
close-pr-message: 'Closed due to no response from repo author for over a year'
|
||||||
|
stale-issue-label: '👤 Awaiting Maintainer Response'
|
||||||
|
stale-pr-label: '👤 Awaiting Maintainer Response'
|
||||||
|
close-issue-label: '🕸️ Inactive'
|
||||||
|
close-pr-label: '🕸️ Inactive'
|
||||||
|
exempt-issue-labels: '📌 Keep Open'
|
||||||
|
exempt-pr-labels: '📌 Keep Open'
|
|
@ -1,13 +1,13 @@
|
||||||
# When a new comment is added to an issue, if it had the Stale or Awaiting User Response labels,
|
# 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, providing it was not user lissy93 who added the commend.
|
# then those labels will be removed, providing it was not user lissy93 who added the commend.
|
||||||
name: 🎯 Remove Stale Label on Update
|
name: 🎯 Add/ Remove Awaiting Response Labels
|
||||||
on:
|
on:
|
||||||
issue_comment:
|
issue_comment:
|
||||||
types: [created]
|
types: [created]
|
||||||
jobs:
|
jobs:
|
||||||
remove-stale:
|
remove-stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.event.inputs.name != 'liss-bot' }}
|
if: ${{ github.event.inputs.name != 'liss-bot' && github.event.inputs.name != 'lissy93' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Remove Stale labels when Updated
|
- name: Remove Stale labels when Updated
|
||||||
uses: actions-cool/issues-helper@v2
|
uses: actions-cool/issues-helper@v2
|
||||||
|
@ -16,3 +16,27 @@ jobs:
|
||||||
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
issue-number: ${{ github.event.issue.number }}
|
issue-number: ${{ github.event.issue.number }}
|
||||||
labels: '🚏 Awaiting User Response,⚰️ Stale'
|
labels: '🚏 Awaiting User Response,⚰️ Stale'
|
||||||
|
|
||||||
|
add-awaiting-author:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.inputs.name != 'liss-bot' && github.event.inputs.name != 'lissy93' }}
|
||||||
|
steps:
|
||||||
|
- name: Add Awaiting Author labels when Updated
|
||||||
|
uses: actions-cool/issues-helper@v2
|
||||||
|
with:
|
||||||
|
actions: add-labels
|
||||||
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
issue-number: ${{ github.event.issue.number }}
|
||||||
|
labels: '👤 Awaiting Maintainer Response'
|
||||||
|
|
||||||
|
remove-awaiting-author:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.inputs.name == 'lissy93' }}
|
||||||
|
steps:
|
||||||
|
- name: Remove Awaiting Author labels when Updated
|
||||||
|
uses: actions-cool/issues-helper@v2
|
||||||
|
with:
|
||||||
|
actions: remove-labels
|
||||||
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
issue-number: ${{ github.event.issue.number }}
|
||||||
|
labels: '👤 Awaiting Maintainer Response'
|
||||||
|
|
Loading…
Reference in New Issue