Skip to content

Commit

Permalink
Hardcode Github action actions/stale version to v3.0.8 (#1346)
Browse files Browse the repository at this point in the history
Because of this issue: actions/stale#173,
which is preventing the removal of the stale label when the issue
receives a new comment.

This commit also increases operations-per-run to 200, since we are
starting to have a decent amount of open issues and it seems we keep
running into the current limit (30).
  • Loading branch information
antoninbas authored Oct 6, 2020
1 parent 3e73917 commit 9520c6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/lifecycle_management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: github.repository == 'vmware-tanzu/antrea'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v3.0.8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Remove stale label or comment, or this will be closed in 180 days'
Expand All @@ -22,6 +22,7 @@ jobs:
exempt-pr-labels: 'lifecycle/frozen'
remove-stale-when-updated: true
debug-only: false
operations-per-run: 200
skip:
if: github.repository != 'vmware-tanzu/antrea'
runs-on: ubuntu-latest
Expand Down

0 comments on commit 9520c6a

Please sign in to comment.