Skip to content

Commit

Permalink
Debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Jan 19, 2024
1 parent 7369448 commit bdc7e48
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 @@ -31291,7 +31291,7 @@ async function run() {
const warnings = core.getInput('warnings').toLowerCase() === 'true';
const githubToken = process.env.GITHUB_TOKEN;
const usePublishedAt = core.getInput('published-at').toLowerCase() === 'true';
const skipLabel = core.getInput('skip-label') || 'skip-release-notes';
const skipLabel = core.getInput('skip-release-notes-label') || 'skip-release-notes';
const printEmptyChapters = core.getInput('print-empty-chapters').toLowerCase() === 'true';

// Validate environment variables and arguments
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 @@ -388,7 +388,7 @@ async function run() {
const warnings = core.getInput('warnings').toLowerCase() === 'true';
const githubToken = process.env.GITHUB_TOKEN;
const usePublishedAt = core.getInput('published-at').toLowerCase() === 'true';
const skipLabel = core.getInput('skip-label') || 'skip-release-notes';
const skipLabel = core.getInput('skip-release-notes-label') || 'skip-release-notes';
const printEmptyChapters = core.getInput('print-empty-chapters').toLowerCase() === 'true';

// Validate environment variables and arguments
Expand Down

0 comments on commit bdc7e48

Please sign in to comment.