mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-25 01:45:32 +08:00
28 lines
1.6 KiB
YAML
28 lines
1.6 KiB
YAML
name: PR Reminder Comment Bot
|
|
permissions:
|
|
pull-requests: write
|
|
on:
|
|
pull_request_target:
|
|
types: [opened]
|
|
jobs:
|
|
pr_reminder:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Remind to run full CI on PR
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
|
with:
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
issue_number: context.issue.number,
|
|
body: '👋 Hi! Thank you for contributing to the vLLM project.\n\n' +
|
|
'💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels.\n\n' +
|
|
'Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run `fastcheck` CI which starts running only a small and essential subset of CI tests to quickly catch errors. You can run other CI tests on top of those by going to your `fastcheck` build on Buildkite UI (linked in the PR checks section) and unblock them. If you do not have permission to unblock, ping `simon-mo` or `khluu` to add you in our Buildkite org.\n\n' +
|
|
'Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging.\n\n' +
|
|
'To run CI, PR reviewers can either: Add `ready` label to the PR or enable auto-merge.\n\n' +
|
|
'🚀'
|
|
})
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|