Skip to content

Commit

Permalink
Create greet-issue.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aditiverma-21 authored Nov 9, 2024
1 parent 6deee55 commit 0579ea9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/greet-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Greet User

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

permissions:
issues: write
pull-requests: write
contents: read

jobs:
greet_user:
runs-on: ubuntu-latest
steps:
- name: Greet User
uses: actions-ecosystem/action-create-comment@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
issue_number: ${{ github.event.issue.number || github.event.pull_request.number }}
body: |
👋 Hello @${{ github.actor }}!
Thank you for your ${{
github.event_name == 'issues' ? 'issue' : 'pull request'
}}. We're glad you're contributing!
If this is your first time, please check out our [Contribution Guidelines](https://github.com/OWNER/REPO/blob/main/CONTRIBUTING.md) to get familiar with our process.
Happy contributing! 🎉

0 comments on commit 0579ea9

Please sign in to comment.