diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 256aad10..4430fa94 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,6 +10,15 @@ jobs: runs-on: ubuntu-latest steps: uses: actions/stale@v3.0.10 + - name: with + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: "This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days" + stale-pr-message: 'It has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days' + days-before-stale: 120 + days-before-close: 5 + exempt-issue-labels: 'work-in-progress,enhancement' + exempt-pr-labels: 'work-in-progress,enhancement' - name: Space cleanup env: DEBIAN_FRONTEND: noninteractive @@ -27,11 +36,3 @@ jobs: sed -i 's/#src-git helloworld/src-git helloworld/g' ./feeds.conf.default ./scripts/feeds update -a ./scripts/feeds install -a - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: "This issue is stale because it has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days" - stale-pr-message: 'It has been open 120 days with no activity. Remove stale label or comment or this will be closed in 5 days' - days-before-stale: 120 - days-before-close: 5 - exempt-issue-labels: 'work-in-progress,enhancement' - exempt-pr-labels: 'work-in-progress,enhancement'