Test branch #3
Workflow file for this run
This file contains 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
name: First Interaction | |
on: | |
issues: | |
types: | |
- opened | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
permissions: | |
contents: read | |
issues: write | |
pull-requests: write | |
jobs: | |
first-interaction: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on New Issues and PRs | |
id: first-interaction | |
uses: ncalteen/first-interaction@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: | | |
Thank you for filing your first issue in this repository! | |
If this is a bug report, please include relevant logs to help us debug the problem. | |
pr-message: | | |
Thank you for your first contribution in this repository! | |
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. |