Skip to content

Commit 73d11a4

Browse files
committed
Issue in greeting.yml workflow #874
1 parent 771d6ef commit 73d11a4

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

.github/workflows/greetings.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
1-
name: Greetings
1+
name: 'Greetings'
22

3-
on: [pull_request_target, issues]
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request_target:
7+
types: [opened]
8+
permissions:
9+
issues: write
10+
pull-requests: write
411

512
jobs:
6-
greeting:
13+
welcome:
714
runs-on: ubuntu-latest
8-
permissions:
9-
issues: write
10-
pull-requests: write
1115
steps:
12-
- name: Greet first-time contributors
13-
id: greet
14-
uses: actions/first-interaction@v1
16+
- uses: actions/checkout@v1
17+
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
1518
with:
16-
repo-token: ${{ secrets.GITHUB_TOKEN }}
17-
issue-message: |
18-
Hi there! 👋 Thank you for opening your first issue on CodeHarborHub. We're excited to hear your thoughts and help you out. Please provide as much detail as you can so we can assist you effectively.
19-
pr-message: |
20-
Hi there! 👋 Thank you for submitting your first pull request to CodeHarborHub. We appreciate your contribution! Our team will review it soon. If you have any questions or need further assistance, feel free to reach out.
19+
github-token: ${{ secrets.GITHUB_TOKEN }}
20+
issue-message: "Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible."
21+
pr-message: "Great job, @${{ github.actor }}! 🎉 Thank you for submitting your pull request to CodeHarborHub. We appreciate your contribution! Our team will review it soon. If you have any questions or need further assistance, feel free to reach out."
22+
23+

0 commit comments

Comments
 (0)