Skip to content

Commit c18ea1d

Browse files
fix(ci): align greetings workflow inputs with first-interaction@v3 (#3365)
* fix(ci): align greetings workflow inputs with first-interaction@v3 The v3 action renamed inputs from kebab-case to snake_case. Rename repo-token/issue-message/pr-message to the new names so the workflow stops failing on every new issue and PR * ci: pin first-interaction action to v3.1.0 commit SHA
1 parent ee55891 commit c18ea1d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/greetings.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
greeting:
88
runs-on: ubuntu-22.04
99
steps:
10-
- uses: actions/first-interaction@v3
10+
- uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0
1111
with:
12-
repo-token: ${{ secrets.GITHUB_TOKEN }}
13-
issue-message: "Hi! Thanks for your contribution! Great first issue!"
14-
pr-message: "Hey thanks for the input! Please give us a bit of time to review it!"
12+
repo_token: ${{ secrets.GITHUB_TOKEN }}
13+
issue_message: "Hi! Thanks for your contribution! Great first issue!"
14+
pr_message: "Hey thanks for the input! Please give us a bit of time to review it!"

0 commit comments

Comments
 (0)