diff --git a/.github/workflows/onboardingbot.yml b/.github/workflows/onboardingbot.yml new file mode 100644 index 0000000..a086817 --- /dev/null +++ b/.github/workflows/onboardingbot.yml @@ -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! +