From 5c4d5ba5c5b6380bb8b288296f2ae2349c19a8e5 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 23 Sep 2026 11:01:47 +0000 Subject: [PATCH] Pass the first-interaction wrapper its own input names The linuxserver first-interaction composite action takes issue_message, pr_message and repo_token, but the greetings template still passes the issue-message, pr-message and repo-token names of actions/first-interaction@v1. GitHub drops them, the wrapper hands empty messages to actions/first-interaction@v3.1.0, and that fails on every opened issue and pull request with "Input required and not supplied: issue_message". closes #405 Co-Authored-By: Claude Opus 5.5 Claude-Session: https://claude.ai/code/session_01RmwHZxdRuWgp9chBZTZTMn --- ansible/roles/github/templates/greetings.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/github/templates/greetings.yml.j2 b/ansible/roles/github/templates/greetings.yml.j2 index 2b09358c..cc920d9a 100644 --- a/ansible/roles/github/templates/greetings.yml.j2 +++ b/ansible/roles/github/templates/greetings.yml.j2 @@ -14,6 +14,6 @@ jobs: steps: - uses: linuxserver/github-workflows/.github/actions/first-interaction@v1 with: - issue-message: '{% if project_deprecation_status %}This image is deprecated. We will not offer support for this image and it will not be updated. The [README]({{ project_github_asset }}/README.md) may have additional information. {% endif %}Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' - pr-message: '{% if project_deprecation_status %}This image is deprecated. We will not offer support for this image and it will not be updated. The [README]({{ project_github_asset }}/README.md) may have additional information. {% endif %}Thanks for opening this pull request! Be sure to follow the [pull request template]({{ project_github_asset }}/.github/PULL_REQUEST_TEMPLATE.md)!' - repo-token: ${{ '{{' }} secrets.GITHUB_TOKEN {{ '}}' }} + issue_message: '{% if project_deprecation_status %}This image is deprecated. We will not offer support for this image and it will not be updated. The [README]({{ project_github_asset }}/README.md) may have additional information. {% endif %}Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' + pr_message: '{% if project_deprecation_status %}This image is deprecated. We will not offer support for this image and it will not be updated. The [README]({{ project_github_asset }}/README.md) may have additional information. {% endif %}Thanks for opening this pull request! Be sure to follow the [pull request template]({{ project_github_asset }}/.github/PULL_REQUEST_TEMPLATE.md)!' + repo_token: ${{ '{{' }} secrets.GITHUB_TOKEN {{ '}}' }}