Skip to content

Commit ce73f10

Browse files
committed
fix(ci): use the underscore input names of actions/first-interaction
The action declares issue_message, pr_message and repo_token. With the hyphenated spelling none of them arrive and the workflow fails on the first outside contribution: 'Input required and not supplied: issue_message'. Only the three keys change, the greeting text stays.
1 parent 5c854d9 commit ce73f10

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/welcome.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
steps:
1717
- uses: actions/first-interaction@v3
1818
with:
19-
repo-token: ${{ secrets.GITHUB_TOKEN }}
20-
issue-message: |
19+
repo_token: ${{ secrets.GITHUB_TOKEN }}
20+
issue_message: |
2121
Welcome! 👋 Thanks for opening your first issue in this repository.
2222
2323
We'll review it as soon as possible. In the meantime:
2424
- Check if there's a similar issue already open
2525
- Add as much detail as possible (steps to reproduce, expected behavior, environment)
2626
2727
If you'd like to contribute a fix, PRs are always welcome!
28-
pr-message: |
28+
pr_message: |
2929
Welcome! 👋 Thanks for your first pull request in this repository.
3030
3131
A maintainer will review it soon. Please make sure:

0 commit comments

Comments
 (0)