-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
failed to remove label if it's not exist #269
Comments
You encountered the issue even if https://github.com/actions-ecosystem/action-remove-labels#inputs |
@micnncim |
I'm also running into this issue. While it's not a breaking change (it reports an error, but doesn't fail the workflow step) it does record an error against the workflow run. I'm using this to remove a I'm happy to attempt a PR to fix this unless it's already being worked on by anyone? |
I met this error too, for a workaround I am looking for a github action to check if label is exists before removing, but it is great if this issue could be fixed. |
This is because of actions-ecosystem/action-remove-labels#269, so definitely needs to be fixed in the future once this issue is fixed
What happened
when I tried to remove all labels set with "labels" options, the error occurred for removing 'stg' label, and 'prd' label which exists was not removed.
dev: exists
stg: NOT exists
prd: exists
in this case,
'dev' label is removed
but 'prd' label is not removed because the error of removing 'stg' label.
What you expected to happen
run a process successfully even if an error occur of removing labels
The text was updated successfully, but these errors were encountered: