Skip to content
Closed
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
29 changes: 29 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Greetings

on:
issues:
types: [opened]
pull_request_target:
types: [opened]

permissions:
issues: write
pull-requests: write

jobs:
greeting:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Welcome to the Boa project! 🎉 Thanks for opening your first issue!

We are a volunteer-run project, so we will try to get back to you as soon as possible.
In the meantime, feel free to check out our [documentation](https://boajs.dev/boa/doc/boa_engine/) or browse existing issues to see if this has been discussed before.
pr-message: |
Welcome to the Boa project! 🎉 Thanks for submitting your first pull request!

We are a volunteer-run project, and we really appreciate your contribution. One of our maintainers will review your PR as soon as they can.
Before your PR is reviewed, please ensure you have read our [Contributing Guidelines](https://github.com/boa-dev/boa/blob/main/CONTRIBUTING.md) and that all CI checks pass.
Loading