[Bugfix] Rename files to remove colons #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |