🪲 Fix emoji labels or messages

This commit is contained in:
Simon Schneegans
2023-10-09 08:24:17 +02:00
committed by GitHub
parent 856e1f2e74
commit 6f4d615b2f
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
- **SVG Mode:** If your gist filename ends with `.svg` instead of `.json`, the action will now generate an SVG badge instead of a JSON file. This is useful if you cannot use shields.io for some reason. However, this SVG mode does not support all features of shields.io. Thanks to [@runarberg](https://github.com/runarberg) for this contribution! - **SVG Mode:** If your gist filename ends with `.svg` instead of `.json`, the action will now generate an SVG badge instead of a JSON file. This is useful if you cannot use shields.io for some reason. However, this SVG mode does not support all features of shields.io. Thanks to [@runarberg](https://github.com/runarberg) for this contribution!
- **New `host` Parameter:** You can now specify the host for the gist API. This is useful if you want to use the action on a GitHub enterprise instance. Thanks to [@LucBerge](https://github.com/LucBerge) for this idea! - **New `host` Parameter:** You can now specify the host for the gist API. This is useful if you want to use the action on a GitHub enterprise instance. Thanks to [@LucBerge](https://github.com/LucBerge) for this idea!
- Fixed a bug which caused the gist not to be updated if the label or message of the badge contained characters which have a different encoding length in UTF8 and UTF16,
- The code has received some major refactoring. If you encounter any problems, please open an issue! - The code has received some major refactoring. If you encounter any problems, please open an issue!
- The action now runs on Node 20 instead of Node 16. - The action now runs on Node 20 instead of Node 16.

View File

@@ -14,7 +14,7 @@ const gistUrl = new URL(core.getInput("gistID"), core.getInput("host"));
async function updateGist(body) { async function updateGist(body) {
const headers = new Headers([ const headers = new Headers([
["Content-Type", "application/json"], ["Content-Type", "application/json"],
["Content-Length", body.length], ["Content-Length", new TextEncoder().encode(body).length],
["User-Agent", "Schneegans"], ["User-Agent", "Schneegans"],
["Authorization", `token ${core.getInput("auth")}`], ["Authorization", `token ${core.getInput("auth")}`],
]); ]);