From 10f1600f5f1889e9966657264db88bd3225dca64 Mon Sep 17 00:00:00 2001 From: zeevdr Date: Mon, 27 Apr 2026 12:04:03 +0300 Subject: [PATCH] fix(ci): use underscore input names for first-interaction@v3 v3 renamed inputs to repo_token / issue_message / pr_message (underscores). With v1 hyphenated names, the action errors: "Input required and not supplied: issue_message" on every PR. Mirrors opendecree/decree#188. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/welcome.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml index 9e32912..6b910c5 100644 --- a/.github/workflows/welcome.yml +++ b/.github/workflows/welcome.yml @@ -17,12 +17,12 @@ jobs: steps: - uses: actions/first-interaction@v3 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: | + repo_token: ${{ secrets.GITHUB_TOKEN }} + issue_message: | Thanks for opening your first issue! We'll take a look soon. In the meantime, search [Discussions](https://github.com/opendecree/decree/discussions) for related topics. - pr-message: | + pr_message: | Thanks for your first pull request! We appreciate the contribution. Before review, please make sure tests pass: `cd sdk && pytest`