Skip to content

release: v0.1.1

release: v0.1.1 #5

Workflow file for this run

# First-Time Contributor Welcome Messages
#
# Purpose: Automatically welcomes new contributors with helpful information
# and resources to encourage community participation.
#
# Triggers:
# - First issue opened by a user
# - First pull request opened by a user
#
# Features:
# - Personalized welcome message with @mention
# - Links to contributing guidelines
# - Points to relevant resources
# - Different messages for issues vs PRs
# - Encourages community engagement
#
# Security Note:
# Uses pull_request_target to comment on PRs from forks
name: Welcome First Time Contributors
on:
pull_request_target: # Allows commenting on PRs from forks
types: [opened]
issues:
types: [opened]
jobs:
welcome:
runs-on: ubuntu-latest
steps:
# Post welcome message for first-time contributors
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Welcome message for first issue
issue-message: |
πŸ‘‹ Welcome to Zopio, @${{ github.actor }}!
Thank you for opening your first issue! We're excited to have you contribute to our community-driven project.
A maintainer will review your issue soon. In the meantime:
- πŸ“– Check out our [contributing guidelines](https://github.com/zopiolabs/zopio/blob/main/.github/CONTRIBUTING.md)
- πŸ’¬ Join the discussion in our [GitHub Discussions](https://github.com/zopiolabs/zopio/discussions)
- 🏷️ We'll add appropriate labels to help categorize your issue
If this is a bug report, please ensure you've included all the requested information in the template. If it's a feature request, we'd love to hear more about your use case!
Thanks for helping make Zopio better! πŸš€
# Welcome message for first pull request
pr-message: |
πŸŽ‰ Welcome to Zopio, @${{ github.actor }}!
Thank you for your first pull request! We're thrilled to have you contribute to our community-driven project.
**Next steps:**
- βœ… Ensure all CI checks pass
- πŸ“ Fill out the PR template completely
- πŸ‘€ A maintainer will review your PR soon
- πŸ’¬ Feel free to ask questions if you need help
**Helpful resources:**
- πŸ“– [Contributing Guidelines](https://github.com/zopiolabs/zopio/blob/main/.github/CONTRIBUTING.md)
- 🌿 [Branch Strategy](https://github.com/zopiolabs/zopio/blob/main/.github/BRANCHES.md)
- πŸ“‹ [Conventional Commits](https://github.com/zopiolabs/zopio/blob/main/.github/conventional-commits.md)
If your PR gets merged, you'll be added to our [contributors list](https://github.com/zopiolabs/zopio/blob/main/CONTRIBUTORS.md) automatically!
Thank you for helping make Zopio better! πŸš€ We appreciate your contribution!