release: v0.1.1 #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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! |