Skip to content

Commit

Permalink
πŸ”€ Merge pull request blombard#9 from HeroJourneyClub/master
Browse files Browse the repository at this point in the history
Fix Issue blombard#8
  • Loading branch information
blombard authored Feb 21, 2024
2 parents e70c0d0 + b440628 commit 3edf28f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9824,7 +9824,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 3edf28f

Please sign in to comment.