Update parameter names in greetings.yml for consistency

Renamed parameters in the `with` section of the
`actions/first-interaction@v3` step to align with the expected
naming conventions:
- `repo-token` to `repo_token`
- `issue-message` to `issue_message`
- `pr-message` to `pr_message`

No changes were made to the content of the messages themselves.
This commit is contained in:
ds5678 2025-10-26 20:19:49 -07:00
parent 5763da212e
commit 2bd4c056ac

View File

@ -11,6 +11,6 @@ jobs:
steps:
- uses: actions/first-interaction@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Thank you for submitting your first issue here. Please be sure you have uploaded your `AssetRipper.log` file. It is in the same folder as the exe file. :)"
pr-message: "Thank you for making your first pull request! We greatly appreciate your enthusiam to contribute and will look at this as soon as we can."
repo_token: ${{ secrets.GITHUB_TOKEN }}
issue_message: "Thank you for submitting your first issue here. Please be sure you have uploaded your `AssetRipper.log` file. It is in the same folder as the exe file. :)"
pr_message: "Thank you for making your first pull request! We greatly appreciate your enthusiam to contribute and will look at this as soon as we can."