Description
Checklist
- I am using the latest version of this action.
- I have read the latest README and followed the instructions.
- I have read the latest GitHub Actions official documentation and learned the basic spec and concepts.
- I have set
RUNNER_DEBUG: 1
for debugging.
Describe the bug
Currently, use this action to mark a PR as Draft or ready depending on the labels added/removed.
When I was using it today, I noticed that while the action does comment on the PR, did it not change the PR's state to Ready.
Checking the latest examples and docs here, I saw that draft: true
changed to action: ready
, so I tried this now, but the action now failed with the message Invalid value "ready" labels.Status: Ready.labeled.pr.action
despite this being 1:1 the same in the label-commenter-config.yml
file:
actions-label-commenter/.github/label-commenter-config.yml
Lines 23 to 25 in feeed63
Yes, I am using a dedicated User account here and the account has sufficient permissions to change a PR's state. This action worked before but now doesn't.
Relevant links
YAML config: https://github.com/Readme-Workflows/recent-activity/blob/main/.github/label-commenter-config.yml
YAML workflow: https://github.com/Readme-Workflows/recent-activity/blob/main/.github/workflows/pr_comment.yml
Relevant log output
Run peaceiris/[email protected]
with:
github_token: ***
config_file: .github/label-commenter-config.yml
[INFO] Version 1.10.0
[INFO] Usage https://github.com/peaceiris/actions-label-commenter#readme
[INFO] event name: pull_request
[INFO] config file path: .github/label-commenter-config.yml
[INFO] label name: Status: Ready
[INFO] label event: labeled
[INFO] issue number: 193
[INFO] no configuration labels.Status: Ready.labeled.pr.locking
[INFO] comment URL: https://github.com/Readme-Workflows/recent-activity/pull/193#issuecomment-1148791343
Error: Action failed with error "invalid value "ready" labels.Status: Ready.labeled.pr.action"
Additional context.
As mentioned above did this action work perfectly fine before and PRs were marked as Ready or Draft.
The example file on this repository mentions action: draft
and action: ready
for PRs so someone would guess it's actually what you need to mark a PR properly, but the fact that it fails means that there must be an issue.