Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github/workflows: add welcome bot #18618

Closed
wants to merge 1 commit into from
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
31 changes: 31 additions & 0 deletions .github/workflows/welcome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: welcome

on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- '*'

jobs:
welcome-message:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/first-interaction@v1
env:
GREETER_MESSAGE: >
Beep boop beep... I am a real human... for real.\n\n
Welcome to the RIOT community, we will try to address this as soon as we can.
As I mentioned before, we are human, many of us do this in our free time, and sometimes we get distracted with life.
I can try to ping someone like this.\n\n
ping @riot-ci\n\n
Feel free to do the same for other [maintainers](https://github.com/orgs/RIOT-OS/teams/maintainers/members) if things are taking a while.
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: ${{ env.GREETER_MESSAGE }}
pr-message: ${{ env.GREETER_MESSAGE }}