diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40fef08..0035b60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: - '*' paths-ignore: - '.github/**' - - '!.github/workflows/**' + - '!.github/workflows/ci.yml' - '.travis.yml' - '.gitignore' - 'docs/**' diff --git a/.github/workflows/issues-cleaner.yml b/.github/workflows/issues-cleaner.yml index db61052..de4c5c9 100644 --- a/.github/workflows/issues-cleaner.yml +++ b/.github/workflows/issues-cleaner.yml @@ -13,11 +13,12 @@ jobs: uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_STALE }} days' - stale-pr-message: 'Stale pull request message' - stale-issue-label: 'no-activity' - exempt-issue-labels: 'pending,in-progress' - stale-pr-label: 'no-activity' - exempt-pr-labels: 'pending,in-progress' + stale-issue-message: 'This issue is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_CLOSE }} days' + stale-issue-label: 'stale' + exempt-issue-labels: 'pending, in progress' + stale-pr-message: 'This PR is stale because it has been open ${{ env.DAYS_TO_STALE }} days with no activity. Remove stale label or comment or this will be closed in ${{ env.DAYS_TO_CLOSE }} days' + stale-pr-label: 'stale' + exempt-pr-labels: 'pending, in progress' days-before-stale: ${{ env.DAYS_TO_STALE }} days-before-close: ${{ env.DAYS_TO_CLOSE }} + # debug-only: true