Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
FuryLion Fastlane plugin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vadim Vlasov
FuryLion Fastlane plugin
Commits
3e72f419
Commit
3e72f419
authored
May 18, 2020
by
Vadim Vlasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Добавлено действие Changelogger.
parent
2cccad6a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
lib/fastlane/plugin/furylion/actions/changelogger.rb
lib/fastlane/plugin/furylion/actions/changelogger.rb
+50
-0
No files found.
lib/fastlane/plugin/furylion/actions/changelogger.rb
0 → 100644
View file @
3e72f419
module
Fastlane
module
Actions
class
ChangeloggerAction
<
Action
def
self
.
run
(
params
)
sh
(
"changelogger"
)
end
#####################################################
# @!group Documentation
#####################################################
def
self
.
description
"Составления списка изменений между текущим Pipeline и последним успешным Pipeline. Возможна отправка сообщения в Mattermost."
end
def
self
.
available_options
[
FastlaneCore
::
ConfigItem
.
new
(
key: :icon
,
env_name:
"MATTERMOST_CHANNEL"
,
description:
"Название канала в Mattermost для отправки списка изменений."
,
default_value:
nil
),
FastlaneCore
::
ConfigItem
.
new
(
key: :username
,
env_name:
"MATTERMOST_TOKEN"
,
description:
"Access Token бота, созданного в Mattermost."
,
default_value:
nil
),
FastlaneCore
::
ConfigItem
.
new
(
key: :message
,
env_name:
"MATTERMOST_MESSAGE"
,
description:
"Сообщение"
,
default_value:
nil
),
FastlaneCore
::
ConfigItem
.
new
(
key: :webhook
,
env_name:
"MATTERMOST_SERVER"
,
description:
"Адрес Mattermost сервера (например: http://chat.furylion.net"
,
default_value:
"http://192.168.1.20:8066"
),
FastlaneCore
::
ConfigItem
.
new
(
key: :gitlab_token
,
env_name:
"CHANGELOG_TOKEN"
,
description:
"GitLab Token для генерации списка изменений"
,
default_value:
nil
),
]
end
def
self
.
authors
[
"Vadim Vlasov"
]
end
def
self
.
is_supported?
(
platform
)
true
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment