Skip to content

docs(command-development): add SlashCommand tool coverage #56

docs(command-development): add SlashCommand tool coverage

docs(command-development): add SlashCommand tool coverage #56

Workflow file for this run

name: Greet First Time Contributors
on:
pull_request_target:
types: [opened]
issues:
types: [opened]
# Group by PR/issue number to prevent overlapping greetings for same item
# cancel-in-progress: false ensures all first-timers get greeted
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.issue.number || github.ref }}
cancel-in-progress: false
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3
with:
issue_message: |
👋 Thanks for opening your first issue! We appreciate your contribution to plugin-dev.
Please make sure you've provided all the requested information in the issue template. Our maintainers will review this soon.
pr_message: |
🎉 Thanks for opening your first pull request! We appreciate your contribution to plugin-dev.
Please make sure:
- [ ] You've filled out the PR template completely
- [ ] All markdown is properly linted
- [ ] You've tested the changes locally
A maintainer will review your PR soon. Feel free to ask questions if you need help!