Skip to content

Commit

Permalink
feat(greeting.yml): add GitHub Actions workflow to greet new contribu…
Browse files Browse the repository at this point in the history
…tors
  • Loading branch information
cb-ashik committed Oct 12, 2023
1 parent 92490cd commit 0a8abf4
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/greeting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Greet New Contributors

on:
issues:
types: [opened]
pull_request:
types: [opened]

permissions:
issues: write
pull-requests: write

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Greet for issue
if: github.event_name == 'issues' && github.event.action == 'opened'
uses: actions/github-script@v6
with:
script: |
const issueComment = `
Hello @${context.payload.sender.login}, thank you for raising the issue. Your contribution is greatly appreciated and we look forward to addressing it.
`
github.rest.issues.createComment({
issue_number: context.payload.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: issueComment,
})
- name: Greet for pull request
if: github.event_name == 'pull_request' && github.event.action == 'opened'
uses: actions/github-script@v6
with:
script: |
const prComment = `
Thank you, @${context.payload.sender.login}, for the pull request. We will take a look at it and get back to you shortly.
`
github.rest.issues.createComment({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: prComment,
})

0 comments on commit 0a8abf4

Please sign in to comment.