Skip to content
This repository was archived by the owner on Jul 4, 2026. It is now read-only.

Test actions

Test actions #10

Workflow file for this run

name: Welcome New Contributors
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
greet-first-time-contributors:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Greet First-Time Contributors
uses: actions/first-interaction@v3
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
issue_message: |
👋 Hello @${{ github.actor }}!
Thank you for opening your first issue here! We appreciate your contribution and will review it as soon as possible. In the meantime, please check out our [contributing guidelines](https://github.com/gaureshpai/create-next-quick/blob/main/CONTRIBUTING.md) for more information.
We're excited to have you in our community!
pr_message: |
🎉 Welcome, @${{ github.actor }}!
Thank you for submitting your first Pull Request to our repository! We're thrilled to see your contribution. Our team will review it shortly.
Please make sure your PR adheres to our [contributing guidelines](https://github.com/gaureshpai/create-next-quick/blob/main/CONTRIBUTING.md).
We appreciate your effort and look forward to collaborating with you!