fastlane-plugin-stream_actions 0.3.61 → 0.3.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2eb47d690f49f99e9e5eb33059cd52a83fea990ac32d4a74a55ddbadfc672a4d
4
- data.tar.gz: f72186ee2ab89ed705e73f182405dc8e6e5a26064edf9d7d54b3a198c36b69b0
3
+ metadata.gz: d3058e337109a1d70cf0df36ebecbc711edc31fb912babb9256ceb6d2e104101
4
+ data.tar.gz: 8821234fa7633ebfd74feae8250a17e521a1053b6661d2c7c2c3a34295332d5f
5
5
  SHA512:
6
- metadata.gz: 7c9482510bea5efc9420998044682d5b82102d2f70d0b42f0d941d68af496e98c4d64b347d3ccadba363cfe239f2a8714a81d2045fbb1a23df5f6c435f153e98
7
- data.tar.gz: 2fb17159311e1c45e1c1f147546fc274fc8cc3951bae8ba5618883e0e30da872b722ec141eebe8ca4e3bdf4ff8f560971c6a0feb5d74d7f13383078f49b1612f
6
+ metadata.gz: aeeccba7bfd43453f728160290c47ad9477bfb4a3a20dd9a695e2d6ccf958d67d6fc21a6dedb003099fcca59a2a9a8b399e149710d8ffb53f17e59bbf82a8039
7
+ data.tar.gz: dba5eb0169b3f309ce7d05ccc376955dad5aee8b35b0bff8b0dc0be2451e4e25047bc503924a8aaacdae7e02c484efe1472405bda82aa31c8c09b4958b0c311a
@@ -3,11 +3,12 @@ module Fastlane
3
3
  class MergeMainToDevelopAction < Action
4
4
  def self.run(params)
5
5
  other_action.ensure_git_status_clean
6
+ sh('git config pull.ff only')
7
+ sh('git fetch --all --tags --prune')
6
8
  sh('git checkout main')
7
- sh('git pull origin main')
8
- sh('git checkout origin/develop')
9
- sh('git pull origin develop')
10
- sh('git log develop..main')
9
+ sh('git pull origin main --ff-only')
10
+ sh('git checkout develop')
11
+ sh('git pull origin develop --ff-only')
11
12
  sh('git merge main')
12
13
  sh('git push origin develop')
13
14
  end
@@ -5,7 +5,7 @@ module Fastlane
5
5
  other_action.ensure_git_status_clean
6
6
 
7
7
  release_branch =
8
- if is_ci
8
+ if other_action.is_ci
9
9
  # This API operation needs the "admin:org" scope.
10
10
  ios_team = `gh api orgs/GetStream/teams/#{params[:github_team_name]}/members -q '.[].login'`.split("\n")
11
11
  UI.user_error!("#{params[:author]} is not a member of the iOS Team") unless ios_team.include?(params[:author])
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.61'
3
+ VERSION = '0.3.63'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.61
4
+ version: 0.3.63
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream