Add the first interaction
workflow
#1
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: | |
types: [opened] | |
jobs: | |
first-interaction: | |
runs-on: ubuntu-latest | |
steps: | |
- name: First Interaction | |
uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: "Thank you for your interest in Natalie! We appreciate you opening your first issue. Contributions like yours help make Natalie better." | |
pr-message: "Welcome and thank you for your first pull request! We appreciate your contribution to Natalie. Your code changes will be reviewed shortly." |