We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32dfb26 commit 0177411Copy full SHA for 0177411
.github/workflows/check-changelog-updated.yml
.github/workflows/pr-greetings.yml
@@ -0,0 +1,25 @@
1
+name: Greetings Message
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize]
6
7
+jobs:
8
+ GreetCommitter:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: "Greetings Message"
12
+ uses: ibakshay/greet-contributors-action@v3
13
+ env:
14
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15
+ with:
16
+ content: |
17
+ Hello @${{ github.actor }}! Please remember the following:
18
19
+ - Update the `changelog.rst` if your changes are significant.
20
+ - Provide a verbose PR title and description.
21
+ - List any GitHub issues that may be closed by this PR.
22
+ - Add tests if this PR adds functionality or bugfixes.
23
+ - Keep this PR marked as draft until ready for review.
24
25
+ Thank you for your contribution!
0 commit comments