Skip to content

Commit

Permalink
Merge pull request #59 from chargebee/chore/add-greeting-workflow
Browse files Browse the repository at this point in the history
Add GitHub Actions workflow to greet new contributors
  • Loading branch information
cb-bharathvaj authored Oct 13, 2023
2 parents 92490cd + 0a8abf4 commit 6b0da40
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 6b0da40

Please sign in to comment.