From 08df4621187ccc846297053b4a1067deaee85c49 Mon Sep 17 00:00:00 2001 From: James Pogran Date: Tue, 23 Mar 2021 15:13:51 -0400 Subject: [PATCH] (maint) Mark stale issues --- .github/workflows/stale.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..2d6c683be --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,16 @@ +name: Mark stale issues + +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 180 + stale-issue-message: 'This issue has been marked stale because it is open with no recent activity. The PDK Team is actively prioritizing existing bugs and new features, if this issue is still important to you please comment and we will add this to our backlog to complete.' + stale-issue-label: 'no-issue-activity'