Skip to content

Commit 0177411

Browse files
authored
Replace changelog CI with greetings (#752)
* replace changelog CI with greetings * switch to a different CI * try another CI
1 parent 32dfb26 commit 0177411

File tree

2 files changed

+25
-20
lines changed

2 files changed

+25
-20
lines changed

.github/workflows/check-changelog-updated.yml

-20
This file was deleted.

.github/workflows/pr-greetings.yml

+25
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)