Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Greetings for first time contributors #1315

Closed
monilpat opened this issue Dec 21, 2024 · 0 comments
Closed

Greetings for first time contributors #1315

monilpat opened this issue Dec 21, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@monilpat
Copy link
Collaborator

Is your feature request related to a problem? Please describe.

In open-source projects, first-time contributors may feel uncertain about the contribution process and community expectations. A lack of acknowledgment for their initial efforts can lead to decreased motivation and engagement.

Describe the solution you'd like

Implement a GitHub Actions workflow using the actions/first-interaction action to automatically send personalized welcome messages to users when they open their first issue or submit their first pull request. This approach acknowledges their contributions and encourages further participation.

Describe alternatives you've considered

  • Manual Greetings: Project maintainers could manually monitor and greet first-time contributors. However, this approach is time-consuming and may lead to delays or inconsistencies.

  • Community Guidelines Documentation: Providing comprehensive documentation helps, but it doesn't offer the personalized acknowledgment that can make contributors feel valued.

Additional context

The actions/first-interaction GitHub Action is designed to filter pull requests and issues from first-time contributors and send them customized messages. Implementing this action can enhance contributor experience by providing immediate feedback and fostering a welcoming community environment.

Example configuration for the workflow:

name: Greetings

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

jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: "Hello @${{ github.actor }}! Welcome to the ai16z community. Thank you for opening your first issue; we appreciate your contribution."
pr-message: "Hi @${{ github.actor }}! Welcome to the ai16z community. Thanks for submitting your first pull request; your efforts help us improve. We'll review it shortly."

By implementing this workflow, the ai16z community can provide timely and personalized acknowledgments to new contributors, enhancing their overall experience and encouraging continued engagement.

@monilpat monilpat added the enhancement New feature or request label Dec 21, 2024
@monilpat monilpat self-assigned this Dec 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant