From 7e9a427d131a05ed758618cae36d407768fcc3bf Mon Sep 17 00:00:00 2001 From: Byron Ruth Date: Sun, 14 May 2023 13:19:30 -0400 Subject: [PATCH] Fix workflow structure Signed-off-by: Byron Ruth --- .github/workflows/stale-issues.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/stale-issues.yaml b/.github/workflows/stale-issues.yaml index 75a70ead..9d00094c 100644 --- a/.github/workflows/stale-issues.yaml +++ b/.github/workflows/stale-issues.yaml @@ -4,14 +4,14 @@ on: - cron: "30 1 * * *" jobs: - - name: stale-issues - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v8 - with: - debug-only: true # Set until the behavior is tuned. - days-before-stale: 28 # Mark stale after 4 weeks (28 days) of inactivity - days-before-close: 7 # Close 1 week after marked `Stale` and without follow-up activity - exempt-all-milestones: true # Any issue/PR within a milestone will be omitted - #exempt-assigness: "foo,bar" # Exempt issues/PRs assigned to particular users + stale: + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v8 + with: + debug-only: true # Set until the behavior is tuned. + days-before-stale: 28 # Mark stale after 4 weeks (28 days) of inactivity + days-before-close: 7 # Close 1 week after marked `Stale` and without follow-up activity + exempt-all-milestones: true # Any issue/PR within a milestone will be omitted + #exempt-assigness: "foo,bar" # Exempt issues/PRs assigned to particular users