mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 09:00:18 -06:00
* Improve developer experience by analyzing PRs automatically using Github actions * update docker workflow base images * use ubuntu latest image * move issue label action to workflow dir
28 lines
836 B
YAML
28 lines
836 B
YAML
name: "Welcome new contributors"
|
|
|
|
on:
|
|
issues:
|
|
types: opened
|
|
pull_request:
|
|
types: opened
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
welcome-message:
|
|
name: Welcoming New Users
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
if: github.event.action == 'opened'
|
|
steps:
|
|
- uses: actions/first-interaction@v1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
pr-message: |-
|
|
Thank you so much for making your first Pull Request and taking the time to improve Formbricks! 🚀🙏❤️
|
|
Feel free to join the conversation at [Discord](https://formbricks.com/discord)
|
|
issue-message: |
|
|
Thank you for opening your first issue! 🙏❤️ One of our team members will review it and get back to you as soon as it possible. 😊
|