Skip to content

Commit 0226532

Browse files
committed
ci: revert first-interaction to v1.3.0 (fix false first-PR greetings)
The dependabot bump to v3.1.0 (30efff6) regressed contributor detection. v3 OR-combines isFirstIssue and isFirstPullRequest on every event, and the PR check dropped author filtering. As a result, any contributor who has opened PRs but no plain issue in the repo is greeted as a first-time PR author (upstream actions/first-interaction#369). v1.3.0 branches on event type and matches PRs by author, so it does not misfire. Pin back to v1.3.0 and restore its kebab-case input names. Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
1 parent dc823bb commit 0226532

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/first-time-contributor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
pull-requests: write
1515
steps:
1616
- name: Greet First-Time Contributor
17-
uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0
17+
uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 # v1.3.0
1818
with:
19-
repo_token: ${{ secrets.GITHUB_TOKEN }}
20-
issue_message: |
19+
repo-token: ${{ secrets.GITHUB_TOKEN }}
20+
issue-message: |
2121
Welcome to OpenROAD! Thanks for opening your first issue.
2222
To get started:
2323
- Build Instructions: https://openroad.readthedocs.io/en/latest/contrib/BuildWithCMake.html
2424
- Contribution Guide: https://openroad.readthedocs.io/en/latest/contrib/contributing.html
2525
2626
Please search existing issues before submitting to avoid duplicates.
2727
A maintainer will get back to you soon!
28-
pr_message: |
28+
pr-message: |
2929
Welcome to OpenROAD! Thanks for opening your first PR.
3030
Before we review:
3131
- Contribution Guide: https://openroad.readthedocs.io/en/latest/contrib/contributing.html

0 commit comments

Comments
 (0)