pantograph/lib/pantograph/actions/set_github_release.rb in pantograph-0.1.8 vs pantograph/lib/pantograph/actions/set_github_release.rb in pantograph-0.1.10
- old
+ new
@@ -173,32 +173,32 @@
PantographCore::ConfigItem.new(key: :api_token,
env_name: "FL_GITHUB_RELEASE_API_TOKEN",
description: "Personal API Token for GitHub - generate one at https://github.com/settings/tokens",
sensitive: true,
code_gen_sensitive: true,
- is_string: true,
+ type: String,
default_value: ENV["GITHUB_API_TOKEN"],
default_value_dynamic: true,
optional: false),
PantographCore::ConfigItem.new(key: :tag_name,
env_name: "FL_SET_GITHUB_RELEASE_TAG_NAME",
description: "Pass in the tag name",
- is_string: true,
+ type: String,
optional: false),
PantographCore::ConfigItem.new(key: :name,
env_name: "FL_SET_GITHUB_RELEASE_NAME",
description: "Name of this release",
- is_string: true,
+ type: String,
optional: true),
PantographCore::ConfigItem.new(key: :commitish,
env_name: "FL_SET_GITHUB_RELEASE_COMMITISH",
description: "Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch (usually master)",
- is_string: true,
+ type: String,
optional: true),
PantographCore::ConfigItem.new(key: :description,
env_name: "FL_SET_GITHUB_RELEASE_DESCRIPTION",
description: "Description of this release",
- is_string: true,
+ type: String,
optional: true,
default_value: Actions.lane_context[SharedValues::FL_CHANGELOG],
default_value_dynamic: true),
PantographCore::ConfigItem.new(key: :is_draft,
env_name: "FL_SET_GITHUB_RELEASE_IS_DRAFT",