From bb39041a6050fc10291f4cb8ee1b9e219e06c162 Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Tue, 24 Nov 2020 13:52:32 -0800 Subject: [PATCH 1/2] Create stale.yml --- .github/workflows/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..dc4882c --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "21 4 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue has become stale and will be closed automatically within a period of time. Sorry about that.' + stale-pr-message: 'This pull request has become stale and will be closed automatically within a period of time. Sorry about that.' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' + days-before-stale: 90 From d41b5571e7a9a718ca15705a8e5c2067082ec91b Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Tue, 24 Nov 2020 14:43:12 -0800 Subject: [PATCH 2/2] Add in codeowners for this repo --- CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..5c6704e --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @actions-experience @advanced-security-code-scanning