Skip to content

[Bugfix] Rename files to remove colons #82

[Bugfix] Rename files to remove colons

[Bugfix] Rename files to remove colons #82

Workflow file for this run

name: PR Reminder Comment Bot
on:
pull_request:
branches:
- main
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.'
})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}