mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
13 lines
405 B
YAML
13 lines
405 B
YAML
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: 'Looks like this is your first issue. Welcome to the community! :wave:'
|
|
pr-message: 'Looks like you just opened your first PR. :clap: This is awesome, thanks and keep up!'
|