Files
first-interaction/.github/workflows/first-interaction.yml
2025-08-28 14:06:22 -04:00

36 lines
864 B
YAML

name: First Interaction
on:
issues:
types:
- opened
pull_request:
branches:
- main
types:
- opened
permissions:
issues: write
pull-requests: write
jobs:
first-interaction:
name: First Interaction
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@main
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
issue_message: |
Hello! Thank you for filing an issue.
If this is a bug report, please include relevant logs to help us debug the problem.
pr_message: |
Hello! Thank you for your contribution.
If you are fixing a bug, please reference the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.