Skip to content

Commit

Permalink
πŸ› Add fix in index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
blombard committed Feb 21, 2024
1 parent 3edf28f commit 7a48df2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const run = async () => {
const iterationType = core.getInput('iteration'); // last or current
const newiterationType = core.getInput('new-iteration'); // current or next
const statuses = core.getInput('statuses').split(',');
const excludedStatuses = core.getInput('excluded-statuses').split(',');
const coreExclusedStatuses = core.getInput('excluded-statuses');
const excludedStatuses = coreExclusedStatuses ? coreExclusedStatuses.split(',') : [];

const project = new GitHubProject({ owner, number, token, fields: { iteration: iterationField } });

Expand Down

0 comments on commit 7a48df2

Please sign in to comment.