We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So this is how this happens:
I add a "bug" label to an issue, works perfectly, moves to the column i want in the project.
Then, i go to the project, change to another column and add another label to it.
Then it will move that issue back to the original column where "bug" need to be.
It is not recognizing that the label that was added is not the "bug" but an extra.
The text was updated successfully, but these errors were encountered:
Certainly not a fix for the action itself, you can guard against this behavior using an if guard in your yml before this action is run:
if
if: contains(github.event.label.*.name, 'bug')
Just ensure you have an always_job running at the end to avoid a conflict in an error getting thrown.
always_job
Sorry, something went wrong.
Thanks Cello 👍
I wil test this :)
No branches or pull requests
So this is how this happens:
I add a "bug" label to an issue, works perfectly, moves to the column i want in the project.
Then, i go to the project, change to another column and add another label to it.
Then it will move that issue back to the original column where "bug" need to be.
It is not recognizing that the label that was added is not the "bug" but an extra.
The text was updated successfully, but these errors were encountered: