Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjitse-E committed Feb 19, 2024
1 parent 4d3bb05 commit 6a223a7
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 @@ -15268,7 +15268,7 @@ async function run() {
const committerUsername = core.getInput('committer_username');
const committerEmail = core.getInput('committer_email');
const repoUrl = github.context.payload.repository.html_url;
const localChangelogPath = (_b = core.getInput('local_changelog_path')) !== null && _b !== void 0 ? _b : null;
const localChangelogPath = (_b = core.getInput('local_changelog_file_path')) !== null && _b !== void 0 ? _b : null;
core.info(`Starting updating CHANGELOG.md for ${repoUrl}`);
if (token === '' || typeof token === 'undefined') {
throw new Error('Input token is missing or empty.');
Expand Down
2 changes: 1 addition & 1 deletion src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default async function run(): Promise<void> {
const committerUsername = core.getInput('committer_username');
const committerEmail = core.getInput('committer_email');
const repoUrl = github.context.payload.repository.html_url
const localChangelogPath = core.getInput('local_changelog_path') ?? null
const localChangelogPath = core.getInput('local_changelog_file_path') ?? null

core.info(`Starting updating CHANGELOG.md for ${repoUrl}`)

Expand Down

0 comments on commit 6a223a7

Please sign in to comment.