Skip to content

Commit

Permalink
fix: job input is not working
Browse files Browse the repository at this point in the history
  • Loading branch information
sarisia committed Jan 25, 2025
1 parent 53a20c5 commit 0078940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function getInputs(): Inputs {
status: core.getInput('status').trim().toLowerCase(),
content: core.getInput('content').trim(),
description: core.getInput('description').trim(),
title: (core.getInput('title') || core.getInput('job')).trim(),
title: (core.getInput('job') || core.getInput('title')).trim(),
image: core.getInput('image').trim(),
color: isNaN(colorParsed) ? undefined : colorParsed,
url: core.getInput('url').trim(),
Expand Down

0 comments on commit 0078940

Please sign in to comment.