From 25584e7438cb0bb4866aa506bbdf94a508ea8150 Mon Sep 17 00:00:00 2001 From: Jimmy Bosse Date: Thu, 11 Jul 2024 10:35:47 -0400 Subject: [PATCH 1/2] Add missing input to meta. --- action.yml | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index a3aea97..fb5259b 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,11 @@ inputs: fogbugz_project: description: 'The name of your FogBugz Project' required: true + fogbugz_subproject: + description: + 'The subproject name of your FogBugz Project this is prepended to the Title because FB does + not have subprojects' + required: true fogbugz_category: description: 'The name of your FogBugz Category' required: true diff --git a/package.json b/package.json index 41a2e19..6b8f2f4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "dependabot-tickets", "description": "This action creates a FogBugz and AgilePlace Planview ticket for Dependabot pull requests.", - "version": "0.2.1", + "version": "0.2.2", "author": "Ankura Consulting Group, LLC", "private": true, "homepage": "https://github.com/actions/javascript-action#readme", From 27c8e9799c4e17e15ce6e6e1ca9986d96ba7e48d Mon Sep 17 00:00:00 2001 From: Jimmy Bosse Date: Thu, 11 Jul 2024 10:37:26 -0400 Subject: [PATCH 2/2] Not required --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fb5259b..e1c90dd 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ inputs: description: 'The subproject name of your FogBugz Project this is prepended to the Title because FB does not have subprojects' - required: true + required: false fogbugz_category: description: 'The name of your FogBugz Category' required: true