forked from vllm-project/llm-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (21 loc) · 834 Bytes
/
set-comment.yaml
File metadata and controls
22 lines (21 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: PR Reminder Comment Bot
on:
pull_request_target:
branches: [ main, 'release/*' ]
types: [opened]
jobs:
pr_reminder:
runs-on: ubuntu-latest
steps:
- name: Remind to add ready label
uses: actions/github-script@v7
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 llm-compressor. Please add the ready label when the PR is ready for review.\n\n**Note:** This is required to complete the testing suite, please only add the label once the PR is code complete and local testing has been performed.'
})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}