Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Greetings

on:
pull_request_target:
types: [opened]
issues:
types: [opened]

permissions:
issues: write
pull-requests: write

jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Message that will be displayed on users' first issue"
pr-message: "Message that will be displayed on users' first pull request"
Comment on lines +20 to +21

Copilot AI Nov 2, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The greeting messages are placeholder text and should be replaced with actual welcoming messages that provide useful information to first-time contributors (e.g., links to contribution guidelines, code of conduct, or how to get help).

Suggested change
issue-message: "Message that will be displayed on users' first issue"
pr-message: "Message that will be displayed on users' first pull request"
issue-message: |
👋 Hi there! Thank you for opening your first issue in this repository.
Please make sure to review our [Contribution Guidelines](https://github.com/OWNER/REPO/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/OWNER/REPO/blob/main/CODE_OF_CONDUCT.md).
If you have any questions, feel free to ask or check our [Discussions](https://github.com/OWNER/REPO/discussions) for help.
pr-message: |
🎉 Thank you for submitting your first pull request!
We appreciate your contribution. Please ensure you have read our [Contribution Guidelines](https://github.com/OWNER/REPO/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/OWNER/REPO/blob/main/CODE_OF_CONDUCT.md).
If you need any assistance, don't hesitate to reach out or visit our [Discussions](https://github.com/OWNER/REPO/discussions).

Copilot uses AI. Check for mistakes.
2 changes: 2 additions & 0 deletions .github/workflows/sast-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,8 @@ jobs:
contents: read
security-events: write
actions: read
issues: write
pull-requests: write

steps:
- name: Download all SAST artifacts
Expand Down
Loading