This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
[BUG] issue template DOCS does not appear #224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Greeting for PR's and Issues | ||
on: [pull_request_target, issues] | ||
jobs: | ||
greetings: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issue: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{secrets.GITHUB_TOKEN}} | ||
issue-message: "It's great having you contribute to this project. Welcome to the club 🔥" | ||
pr-message: "It's great having you contribute to this project. Welcome to the club 🤓" |