Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/onboardingbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Onboarding"

on:
issues:
types: [opened]
workflow_dispatch:

jobs:
welcome:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: "first interaction"
uses: actions/first-interaction@3c71ce730280171fd1cfb57c00c774f8998586f7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
## Welcome to Gitbun!
@${{ github.event.issue.user.login }}, thank you for opening this issue. We appreciate you helping us improve!

**Quick Checklist:**
- [ ] Have you checked if a similar [issue](https://github.com/nirvik34/gitbun/issues) already exists?
- [ ] Have you read our [Contributing Guidelines](https://github.com/nirvik34/gitbun/blob/main/CONTRIBUTING.md)?

A maintainer will review your report shortly. In the meantime, ensure your description provides enough context for us to help you!

Loading