From b313863eb1414822a7b356be1653ad0b69354258 Mon Sep 17 00:00:00 2001 From: James Stevenson Date: Mon, 14 Oct 2024 10:01:08 -0400 Subject: [PATCH] cicd: exempt draft PRs from stale check --- .github/workflows/reusable-stale.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/reusable-stale.yaml b/.github/workflows/reusable-stale.yaml index 0e29bbc..3992872 100644 --- a/.github/workflows/reusable-stale.yaml +++ b/.github/workflows/reusable-stale.yaml @@ -28,6 +28,7 @@ jobs: - name: Mark issues and PRs as stale uses: actions/stale@v9 with: + exempt-draft-pr: true only-labels: ${{ inputs.labels }} exempt-issue-labels: ${{ inputs.exempt-labels }} exempt-pr-labels: ${{ inputs.exempt-labels }}