diff --git a/.github/workflows/close-old-issues.yaml b/.github/workflows/close-old-issues.yaml index a91b3363d3..ace4bb3444 100644 --- a/.github/workflows/close-old-issues.yaml +++ b/.github/workflows/close-old-issues.yaml @@ -14,7 +14,7 @@ jobs: contents: none steps: - name: Close inactive issues - uses: actions/stale@v9.0.0 + uses: actions/stale@v8 with: # A list of labels to reference when looking through issues, # and only when one (or even more) of these labels are found.. @@ -33,7 +33,7 @@ jobs: # Increase this value if the project receives a lot of # PRs (yes.. apparently they're processed no matter what) & Issues. # Default value for it (according to the docs) is 30 - operations-per-run: 100 + operations-per-run: 200 # Make this field equal true if you want to test your configuration if it works correctly or not debug-only: false repo-token: ${{ secrets.GITHUB_TOKEN }}