-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 1.78 KB
/
greetings.yml
File metadata and controls
46 lines (38 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "Welcome — insightvm-python"
on:
issues:
types: [opened]
pull_request_target:
types: [opened, reopened, ready_for_review]
jobs:
greet:
name: Greet first-time contributors
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
contents: read
steps:
- name: Post welcome message for issues & PRs
uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Hi @${{ github.actor }} 👋
Thanks for opening an issue against the insightvm-python client.
To help us triage it quickly, please:
- Use the issue templates when appropriate.
- Include a short description, steps to reproduce, and the expected vs actual behavior.
- Provide the Python version and the version of the package you are using.
- Attach logs or a minimal reproduction when possible.
For security-sensitive reports, see SECURITY.md. See also CONTRIBUTING.md and README.md.
pr-message: |
Hi @${{ github.actor }} 👋
Thanks for your first pull request to insightvm-python! We appreciate your contribution.
A few quick reminders to help speed up review:
- Follow the contribution guide: CONTRIBUTING.md
- Add or update tests under the `tests/` directory and run them with `pytest`.
- Run formatting and linters (pre-commit / black / isort / flake8) locally before pushing.
- Update `CHANGELOG.md` if the change affects public behaviour or user-facing APIs.
- Describe the purpose of the change and the steps you followed to verify it.
A maintainer will review this soon — thank you!