Commit 31dbb471 authored by Wenhao Xie's avatar Wenhao Xie Committed by LeiWang1999
Browse files

[CI] Add Reminder Bot for pull request contributions (#491)

* [CI] Add Reminder Bot for pull request contributions

* upd
parent 7b66fb19
name: Reminder Bot
on:
pull_request_target:
types: [opened]
jobs:
pr_reminder:
runs-on: ubuntu-latest
steps:
- name: Remind
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 the **TileLang** project.\n\n' +
'Please remember to run `bash format.sh` in the root directory of the project to ensure your changes are properly linted and formatted. This will help ensure your contribution passes the format check.\n\n' +
'We appreciate you taking this step! Our team will review your contribution, and we look forward to your awesome work!\n\n' +
'🚀'
})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment