mirror of
https://github.com/hyprwm/Hyprland
synced 2025-12-20 02:50:04 +01:00
45 lines
1.5 KiB
YAML
45 lines
1.5 KiB
YAML
name: "New MR welcome comment"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
comment:
|
|
if: >
|
|
github.event.pull_request.user.login != 'vaxerski' &&
|
|
github.event.pull_request.user.login != 'fufexan' &&
|
|
github.event.pull_request.user.login != 'gulafaran' &&
|
|
github.event.pull_request.user.login != 'ujint34' &&
|
|
github.event.pull_request.user.login != 'paideiadilemma' &&
|
|
github.event.pull_request.user.login != 'notashelf'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
env:
|
|
PR_COMMENT: |
|
|
Hello and thank you for making a PR to Hyprland!
|
|
|
|
Please check the [PR Guidelines](https://wiki.hypr.land/Contributing-and-Debugging/PR-Guidelines/) and make sure your PR follows them.
|
|
It will make the entire review process faster. :)
|
|
|
|
If your code can be tested, please always add tests. See more [here](https://wiki.hypr.land/Contributing-and-Debugging/Tests/).
|
|
|
|
_beep boop, I'm just a bot. A real human will review your PR soon._
|
|
|
|
steps:
|
|
- name: Add comment to PR
|
|
uses: actions/github-script@v7
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
script: |
|
|
const pr = context.payload.pull_request;
|
|
|
|
await github.rest.issues.createComment({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
issue_number: pr.number,
|
|
body: process.env.PR_COMMENT,
|
|
});
|