We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3cbc708 + 3d82dd3 commit ee14c94Copy full SHA for ee14c94
.github/workflows/test.yml
@@ -58,3 +58,4 @@ jobs:
58
TOPIC_FILES: ${{ steps.topics.outputs.changed }}
59
COLLECTION_FILES: ${{ steps.collections.outputs.changed }}
60
TEST_ALL_FILES: ${{ steps.all.outputs.changed }}
61
+ SKIP_COLLECTION_API_CHECKS: ${{ matrix.test_type == 'all' && '1' || '' }}
test/collections_test.rb
@@ -137,6 +137,10 @@
137
end
138
139
it "fails if a user, organization, or repository has been renamed or removed" do
140
+ if ENV["SKIP_COLLECTION_API_CHECKS"]
141
+ skip "Skipping collection API checks (rename detection handled by collections-renames workflow)"
142
+ end
143
+
144
errors = []
145
repos_to_check = []
146
users_to_check = []
0 commit comments