Skip to content

Commit

Permalink
Add stale and lock github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
sdb9696 committed Apr 18, 2024
1 parent ebf54ec commit a447162
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/locks-threads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lock

# yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 * * * *"

env:
REPOSITORY_NAME: 'tchellomello'

jobs:
lock:
if: github.repository_owner == ${{ env.REPOSITORY_NAME }}
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5.0.1
with:
github-token: ${{ github.token }}
issue-inactive-days: "30"
issue-lock-reason: ""
pr-inactive-days: "7"
pr-lock-reason: ""
73 changes: 73 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Stale

# yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 * * * *"
workflow_dispatch:

env:
REPOSITORY_NAME: 'tchellomello'

jobs:
stale:
if: github.repository_owner == ${{ env.REPOSITORY_NAME }}
runs-on: ubuntu-latest
steps:
- name: Stale issues and prs
uses: actions/stale@v9.0.0
with:
repo-token: ${{ github.token }}
days-before-stale: 90
days-before-close: 7
operations-per-run: 250
remove-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-labels: "no-stale-help-wanted,needs-more-information,waiting-for-reporter"
stale-pr-label: "stale"
exempt-pr-labels: "no-stale"
stale-pr-message: >
There hasn't been any activity on this pull request recently. This
pull request has been automatically marked as stale because of that
and will be closed if no further activity occurs within 7 days.
If you are the author of this PR, please leave a comment if you want
to keep it open. Also, please rebase your PR onto the latest dev
branch to ensure that it's up to date with the latest changes.
Thank you for your contribution!
stale-issue-message: >
There hasn't been any activity on this issue recently. This issue has
been automatically marked as stale because of that. It will be closed
if no further activity occurs.
Please make sure to update to the latest ring_doorbell version and
check if that solves the issue.
Thank you for your contributions.
- name: Needs-more-information and waiting-for-reporter stale issues policy
uses: actions/stale@v9.0.0
with:
repo-token: ${{ github.token }}
only-labels: "needs-more-information,waiting-for-reporter"
days-before-stale: 21
days-before-close: 7
days-before-pr-stale: -1
days-before-pr-close: -1
operations-per-run: 250
remove-stale-when-updated: true
stale-issue-label: "stale"
exempt-issue-labels: "no-stale,help-wanted"
stale-issue-message: >
There hasn't been any activity on this issue recently and has been
waiting for the reporter to provide information or an update.
This issue has been automatically marked as stale because of that.
It will be closed if no further activity occurs.
Thank you for your contributions.
Please make sure to update to the latest ring_doorbell version and
check if that solves the issue.
Thank you for your contributions.

0 comments on commit a447162

Please sign in to comment.