mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
Add first issue/PR welcome message action (#185)
* Add first issue/PR welcome message action Signed-off-by: Robert Prince <robert.prince@anchore.com> * update first-pr-issue message with a simple greeting Signed-off-by: Alex Goodman <alex.goodman@anchore.com> Co-authored-by: Alex Goodman <alex.goodman@anchore.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
This commit is contained in:
parent
4ff330e396
commit
587589bfe3
1 changed files with 15 additions and 0 deletions
15
.github/workflows/first-pr-issue-message.yaml
vendored
Normal file
15
.github/workflows/first-pr-issue-message.yaml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Greetings
|
||||
|
||||
on: [pull_request, issues]
|
||||
|
||||
jobs:
|
||||
greeting:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/first-interaction@v1
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
issue-message: |-
|
||||
Hey :wave:! Welcome to the repo and thanks for reporting, we'll review this issue soon!
|
||||
pr-message: |-
|
||||
Hey :wave:! Welcome to the repo and thanks for your contribution, we'll review your PR soon!
|
Loading…
Reference in a new issue