Skip to content

Commit

Permalink
DOC: Add First Interaction GitHub Action
Browse files Browse the repository at this point in the history
Closes #1533
  • Loading branch information
thewtex committed Aug 24, 2022
1 parent cb4f17f commit 4401132
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/first-interaction.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: First interaction

on:
- pull_request_target
- issues

jobs:
build:
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write

steps:
- uses: actions/first-interaction@v1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
issue-message: '# Thank you for contributing an issue\n**Welcome to the ITK community!**\nWe are glad you are here and appreciate your contribution. Please keep in mind our [community participation guidelines](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CODE_OF_CONDUCT.md).\nAlso, please check [existing open issues](https://github.com/InsightSoftwareConsortium/ITK/issues) and consider discussion on the [ITK Discourse](https://discourse.itk.org).'
pr-message: '# Thank you for contributing a pull request\n**Welcome to the ITK community!**\nWe are glad you are here and appreciate your contribution. Please keep in mind our [community participation guidelines](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CODE_OF_CONDUCT.md).\nMore support and guidance on the contribution process and be found in our [contributing guide](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CONTRIBUTING.md).'

0 comments on commit 4401132

Please sign in to comment.