From 91a2d7104e7a02d944f49071b1a0e1480ffe6a55 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Mon, 28 Feb 2022 11:39:36 -0500 Subject: [PATCH] build: fix usage of input in feature action Signed-off-by: Michael Dawson --- .github/workflows/close-stale-feature-requests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/close-stale-feature-requests.yml b/.github/workflows/close-stale-feature-requests.yml index 8147806039e33e..0b482ed8ae065f 100644 --- a/.github/workflows/close-stale-feature-requests.yml +++ b/.github/workflows/close-stale-feature-requests.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: ${{ github.event.input.daysBeforeStale }} + days-before-stale: ${{ github.event.inputs.daysBeforeStale }} days-before-close: 30 stale-issue-label: stale close-issue-message: ${{ env.CLOSE_MESSAGE }}