Files
first-interaction/.github/workflows/first-interaction.yml
2025-02-19 14:01:25 -05: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.