Skip to content

Commit e0aef51

Browse files
committed
ci(greetings): fix input names for first-interaction v3
v3 renamed the inputs from kebab-case (issue-message, pr-message, repo-token) to snake_case, so every greeting run failed with 'Input required and not supplied: issue_message'.
1 parent 25223bb commit e0aef51

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/greetings.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
steps:
1717
- uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0
1818
with:
19-
repo-token: ${{ secrets.GITHUB_TOKEN }}
20-
issue-message: >
19+
# v3 renamed the inputs from kebab-case to snake_case
20+
repo_token: ${{ secrets.GITHUB_TOKEN }}
21+
issue_message: >
2122
👋 Thanks for opening your first issue in Jodit!
2223
2324
@@ -30,7 +31,7 @@ jobs:
3031
Using Jodit in a commercial product? A
3132
[PRO / OEM license](https://xdsoft.net/jodit/pro/)
3233
includes priority support.
33-
pr-message: >
34+
pr_message: >
3435
🎉 Thanks for your first pull request to Jodit!
3536
3637

0 commit comments

Comments
 (0)