diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index c8597a1..df878cf 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -52,6 +52,8 @@ jobs: run: | git config --global user.user "dennykorsukewitz" git config --global user.name "Denny Korsukéwitz" + git config --global github.user "dennykorsukewitz" + git config --global github.name "Denny Korsukéwitz" - name: git config user.name run: git config --global --get user.name - name: git config user.user diff --git a/generators/plugin/config.js b/generators/plugin/config.js index 1d5a9b6..bb550bf 100644 --- a/generators/plugin/config.js +++ b/generators/plugin/config.js @@ -12,6 +12,19 @@ const config = { default: '${config.package_name_pascal_case}', store: true, }, + { + name: 'framework_version', + message: 'For which framework version should this package be?', + type: 'list', + choices: [ + '3.3.x', + '4.0.x', + '5.0.x', + '6.0.x', + '6.5.x' + ], + store: true, + }, ], }; module.exports = config; \ No newline at end of file