From 54509dba798841c4e8dfbcd6fabb2a48f8a7b74b Mon Sep 17 00:00:00 2001 From: Mashhur Date: Mon, 25 Sep 2023 16:06:49 -0700 Subject: [PATCH 1/2] Update the calling script name for generating placeholder. --- .github/workflows/add_plugin_placeholder_in_vpr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_plugin_placeholder_in_vpr.yml b/.github/workflows/add_plugin_placeholder_in_vpr.yml index 3195cd6a..e4740a97 100644 --- a/.github/workflows/add_plugin_placeholder_in_vpr.yml +++ b/.github/workflows/add_plugin_placeholder_in_vpr.yml @@ -51,7 +51,7 @@ jobs: working-directory: ./docs-tools - name: Create an empty placeholder working-directory: ./docs-tools - run: bundle exec ruby create_plugin_placeholder.rb --output-path=../ --plugin-type=${{ github.event.inputs.plugin_type }} --plugin-name=${{ github.event.inputs.plugin_name }} + run: bundle exec ruby generate_plugin_placeholder.rb --output-path=../ --plugin-type=${{ github.event.inputs.plugin_type }} --plugin-name=${{ github.event.inputs.plugin_name }} env: JRUBY_OPTS: "-J-Xmx4g" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 791d151c2970eff9c814d1c9453bd5e5a7f88bcf Mon Sep 17 00:00:00 2001 From: Mashhur Date: Mon, 25 Sep 2023 16:10:19 -0700 Subject: [PATCH 2/2] Make an empty for plugin type. --- .github/workflows/add_plugin_placeholder_in_vpr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_plugin_placeholder_in_vpr.yml b/.github/workflows/add_plugin_placeholder_in_vpr.yml index e4740a97..82a3fcb8 100644 --- a/.github/workflows/add_plugin_placeholder_in_vpr.yml +++ b/.github/workflows/add_plugin_placeholder_in_vpr.yml @@ -6,7 +6,7 @@ on: plugin_type: description: 'Type of plugin: input, filter, output or integration' required: true - default: 'input' + default: '' type: string plugin_name: description: 'Name for the plugin being created'