-
Notifications
You must be signed in to change notification settings - Fork 16
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
Support for Emoji Icons in Status names #2
Comments
Hello @thekaushikls 👋 The problem here is how I parse the const statuses = core.getInput('statuses').split(','); So in your case the action is looking for The quick fix for you is just to remove the space after the comma. statuses: 🧱 Planning,📋 Backlog... But you are right that statuses:
- 🧱 Planning
- 📋 Backlog seems neater. So if I find time, I'll update the code to support this structure. Edit: I updated the README: 1eedfb0 |
Hi, thanks for suggesting to remove the white-spaces. I removed the emojis as a temp fix, will try your method. Also, I dont think it is common practice to name something that starts with a whitespace. I think just |
While working on a PR for #5, I experimented with the idea of making statuses:
- Planning
- Backlog |
Hi, thank you for your GitHubAction, it has been super helpful. I have been playing around with it for sometime now.
I noticed that in one of my projects, I have the
Status
name contain emoji, and that seems to not be supported.In the below image, I am updating some of the statuses. But, only the first one (🧱 Planning) seems to be updated.
Depending on the order, only the first status gets updated.
Is there a specific way to include names with emoji?
Can I do something like this?
The text was updated successfully, but these errors were encountered: