dosubot[bot] commented on issue #40505: URL: https://github.com/apache/superset/issues/40505#issuecomment-4565265237
<!-- Answer --> The issue is clear from the workflow file. The workflow at `.github/workflows/welcome-new-users.yml` is using `actions/first-interaction@v1` with **kebab-case** input names (`repo-token`, `pr-message`) [[1]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/.github/workflows/welcome-new-users.yml#L15-L22), but it appears the action has been updated to `@v3` (as shown in your error log) which expects **snake_case** inputs (`repo_token`, `pr_message`, `issue_message`). The fix would involve two changes: 1. **Update the action version and parameter names** — switch from `@v1` to `@v3` (or keep `@v3` if Dependabot already bumped it) and rename the inputs to snake_case: ```yaml - name: Welcome Message uses: actions/first-interaction@v3 continue-on-error: true with: repo_token: ${{ github.token }} issue_message: |- ... (some message for first-time issue openers) pr_message: |- Congrats on making your first PR and thank you for contributing to Superset! 🎉 ❤️ We hope to see you in our [Slack](https://apache-superset.slack.com/) community too! Not signed up? Use our [Slack App](http://bit.ly/join-superset-slack) to self-register. Please review our [New Contributor Welcome & Expectations](https://github.com/apache/superset/wiki/New-Contributor-Welcome-&-Expectations). ``` 2. **Remove or reconsider `continue-on-error: true`** — this is why the action shows as "success" even when it fails [[2]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/.github/workflows/welcome-new-users.yml#L1-L16). Removing it would address point (b) in your report. Note that `@v3` **requires** `issue_message` as an input (per the error), so you'll need to provide one even if it's just a brief welcome for first-time issue creators. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=reply-with-mention&utm_term=apache%2Fsuperset).* --- Share context across your team and agents. Try [Dosu](https://dosu.dev?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=knowledge-infrastructure-tagline&utm_term=apache%2Fsuperset). [](https://app.dosu.dev/response-feedback?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=knowledge-infrastructure-feedback&utm_term=apache%2Fsuperset&message_id=60601cf6-5421-4166-bafc-69cfa7232464) [](https://github.dosu.com/apache/superset?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=knowledge-infrastructure-learn-repo&utm_term=apache%2Fsuperset) [](https://app.dosu.dev/signup?referrer=openSource&source=github-footer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=knowledge-infrastructure-add-team&utm_term=apache%2Fsuperset) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
