2019-08-06 17:41:07 -07:00
|
|
|
name: Greetings
|
|
|
|
|
|
2019-08-07 19:10:58 -07:00
|
|
|
on: [pull_request, issues]
|
2019-08-06 17:41:07 -07:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
greeting:
|
|
|
|
|
runs-on: ubuntu-latest
|
2021-03-02 19:59:19 -06:00
|
|
|
permissions:
|
|
|
|
|
issues: write
|
|
|
|
|
pull-requests: write
|
2019-08-06 17:41:07 -07:00
|
|
|
steps:
|
2019-08-07 10:55:35 -07:00
|
|
|
- uses: actions/first-interaction@v1
|
|
|
|
|
with:
|
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-01-04 08:40:18 -08:00
|
|
|
issue-message: 'Message that will be displayed on users first issue'
|
|
|
|
|
pr-message: 'Message that will be displayed on users first pull request'
|