forked from json-schema-org/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Github Workflow for Greeting contributor on their first PR merge (
json-schema-org#480) * ci * Update .github/workflows/greet_on_first_merge.yml Co-authored-by: Benjamin Granados <[email protected]> * Update Layout.tsx --------- Co-authored-by: Benjamin Granados <[email protected]>
- Loading branch information
1 parent
9b458f6
commit 6007744
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Greet on User First PR Merge | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
greet: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/github-script@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
const authorLogin = context.payload.pull_request.user.login; | ||
const firstPR = await github.issues.listForRepo({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_requests: { | ||
state: 'closed', | ||
author: authorLogin, | ||
}, | ||
}); | ||
console.log(firstPR.data.length); | ||
if (firstPR.data.length === 1) { | ||
const greetingMessage = ` Congratulations, @${authorLogin} for your first pull request merge in this repository! 🎉🎉. Thanks for your contribution to JSON Schema! `; | ||
await github.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: prNumber, | ||
body: greetingMessage | ||
}); | ||
} |