From 6aeae9c2244927d8083f10b2cdb42d35b132bd40 Mon Sep 17 00:00:00 2001 From: bwp91 <43026681+bwp91@users.noreply.github.com> Date: Sun, 27 Feb 2022 08:24:52 +0000 Subject: [PATCH] update builds for node and increase issue closure periods --- .github/no-response.yml | 4 ++-- .github/stale.yml | 4 ++-- .github/workflows/build.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/no-response.yml b/.github/no-response.yml index 4523097f..c4bf7399 100644 --- a/.github/no-response.yml +++ b/.github/no-response.yml @@ -1,10 +1,10 @@ # Number of days of inactivity before an Issue is closed for lack of response -daysUntilClose: 3 +daysUntilClose: 7 # Label requiring a response responseRequiredLabel: complete # Comment to post when closing an Issue for lack of response. Set to `false` to disable closeComment: > This issue has been automatically closed as it was marked as complete and has had - no further responses within three days. If you are still experiencing problems related + no further responses within seven days. If you are still experiencing problems related to the original issue then please reply to this message and the issue will be reopened if necessary. Thank you. diff --git a/.github/stale.yml b/.github/stale.yml index cd68e851..47fa62a3 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -1,7 +1,7 @@ # Number of days of inactivity before an issue becomes stale -daysUntilStale: 7 +daysUntilStale: 14 # Number of days of inactivity before a stale issue is closed -daysUntilClose: 3 +daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - "feedback wanted" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e248ae14..b1aacab9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,12 +9,12 @@ jobs: strategy: matrix: # the Node.js versions to build on - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }}