Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/decidim/maintainers_toolbox/action_backporter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ def call
extract_versions.each do |version|
next if extract_backport_pull_request_for_version(related_issues, version)
system("decidim-backporter --github_token=#{token} --pull_request_id=#{pull_request_id} --version_number=#{version} --exit_with_unstaged_changes=#{exit_with_unstaged_changes} --with-console=false", exception: true)
system("bundle exec rubocop -A")
system("bundle exec erblint -A")
system("git commit -a -m 'Fix linter automatic offenses'")
rescue RuntimeError => e
puts e.message
create_backport_issue(version)
Expand Down
Loading