github.com/safing/portbase@v0.19.5/.github/workflows/issues-first-greet.yml (about) 1 # This workflow responds to first time posters with a greeting message. 2 # Docs: https://github.com/actions/first-interaction 3 name: Greet New Users 4 5 # This workflow is triggered when a new issue is created. 6 on: 7 issues: 8 types: opened 9 10 permissions: 11 contents: read 12 issues: write 13 14 jobs: 15 greet: 16 runs-on: ubuntu-latest 17 steps: 18 - uses: actions/first-interaction@v1 19 with: 20 repo-token: ${{ secrets.GITHUB_TOKEN }} 21 # Respond to first time issue raisers. 22 issue-message: | 23 Greetings and welcome to our community! As this is the first issue you opened here, we wanted to share some useful infos with you: 24 25 - 🗣️ Our community on [Discord](https://discord.gg/safing) is super helpful and active. We also have an AI-enabled support bot that knows Portmaster well and can give you immediate help. 26 - 📖 The [Wiki](https://wiki.safing.io/) answers all common questions and has many important details. If you can't find an answer there, let us know, so we can add anything that's missing.