Skip to content

Commit

Permalink
- Simplified duplicate string as GitHub does not support colors.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Jan 29, 2024
1 parent 68d1151 commit 9a1a5b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29509,7 +29509,7 @@ async function run() {
const githubToken = process.env.GITHUB_TOKEN;
const tagName = core.getInput('tag-name');
const githubRepository = process.env.GITHUB_REPOSITORY;
const duplicate = "- **<span style=\"color: red;\">[Duplicate]<span>** #";
const duplicate = "- _**<span style=\"color: red;\">[Duplicate]<span>**_ #";

// Validate GitHub token
if (!githubToken) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-release-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ async function run() {
const githubToken = process.env.GITHUB_TOKEN;
const tagName = core.getInput('tag-name');
const githubRepository = process.env.GITHUB_REPOSITORY;
const duplicate = "- **<span style=\"color: red;\">[Duplicate]<span>** #";
const duplicate = "- _**[Duplicate]**_ #";

// Validate GitHub token
if (!githubToken) {
Expand Down

0 comments on commit 9a1a5b9

Please sign in to comment.