You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Apps/fastlane/helpers/build_helper.rb
+11-8
Original file line number
Diff line number
Diff line change
@@ -123,19 +123,22 @@
123
123
build_notes# return value
124
124
end
125
125
126
-
lane:get_build_test_groupsdo
127
-
test_groups=['all-builds']# send all builds to group 'all-builds'. Therefore, set it here and we will not remove it.
126
+
lane:get_build_test_groupsdo
127
+
test_groups=['all-builds']# send all builds to group 'all-builds'. Therefore, set it here and we will not remove it.
128
+
test_groups.append("feature-branch")# Feature branch will be used when a PR is merged into a feature branch. We will need to add a check for this.
128
129
github=GitHub.new()
129
-
130
-
# To avoid giving potentially unstable builds of our sample apps to certain members of the organization, we only send builds to "stable" group uncertain certain situations.
131
-
# If a commit is merged into main, it's considered stable because we deploy to production on merges to main.
130
+
131
+
# To avoid giving potentially unstable builds of our sample apps to certain members of the organization, we only send builds to "stable" group uncertain certain situations.
132
+
# If a commit is merged into main, it's considered stable because we deploy to production on merges to main.
0 commit comments