Skip to content

Commit

Permalink
chore(workflow): updating workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavi Jorda committed Jul 24, 2023
2 parents d91a641 + d824c10 commit 07c021f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Title Checker
name: PR Title Checker-v1.4.0
on:
pull_request_target:
branches:
Expand Down
8 changes: 7 additions & 1 deletion src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const init = async (): Promise<void> => {

// collect all necessary data from user
const answers = await inquirer
.prompt([
.prompt([
{
type: 'input',
name: 'name',
Expand Down Expand Up @@ -43,6 +43,12 @@ export const init = async (): Promise<void> => {
name: 'filePath',
message: `The path where your configuration will be stored (if it exists, it will be overwritten)?`,
default: `./config.json`
},
{
type: 'input',
name: 'playbookTimeoutSeconds',
message: `Timeout for checking playbook runs`,
default: `10`
}
]);

Expand Down

0 comments on commit 07c021f

Please sign in to comment.