mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-11-30 11:07:41 +08:00
17 lines
436 B
YAML
17 lines
436 B
YAML
name: Greetings
|
|
|
|
on: [pull_request_target, issues]
|
|
|
|
jobs:
|
|
greeting:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/first-interaction@v1
|
|
with:
|
|
repo-token: ${{ secrets.TOKEN }}
|
|
issue-message: "Message that will be displayed on users' first issue"
|
|
pr-message: "Message that will be displayed on users' first pull request"
|