diff options
author | Casey Lee <cplee@nektos.com> | 2020-08-28 20:56:20 +0200 |
---|---|---|
committer | Casey Lee <cplee@nektos.com> | 2020-08-28 20:56:20 +0200 |
commit | 0d5a228ab971db513f86e42757bc9d63058c2123 (patch) | |
tree | 8545e078096d73849ffd5b11979c8c3f8002d880 | |
parent | Support setting shell via defaults.run (#343) (diff) | |
download | forgejo-act-0.2.11.tar.xz forgejo-act-0.2.11.zip |
update actions/stale to remove stale when issues are updatedv0.2.11
-rw-r--r-- | .github/workflows/stale.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 715cf4a..ac26b25 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v1 + - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'Issue is stale and will be closed in 7 days unless there is new activity' @@ -16,3 +16,5 @@ jobs: exempt-issue-label: 'meta/stale-exempt' stale-pr-label: 'meta/stale' exempt-pr-label: 'meta/stale-exempt' + remove-stale-when-updated: true + |