@@ -213,7 +213,7 @@ def _uses_secret_edges(self):
213213 end = ConditionalEdgePath (
214214 kind = nk .REPO_SECRET ,
215215 property_matchers = [
216- PropertyMatch (key = "name" , value = ref .name ),
216+ PropertyMatch (key = "name" , value = ref .name . upper () ),
217217 PropertyMatch (
218218 key = "repository_id" , value = self .repository_node_id
219219 ),
@@ -229,7 +229,7 @@ def _uses_secret_edges(self):
229229 end = ConditionalEdgePath (
230230 kind = nk .ORG_SECRET ,
231231 property_matchers = [
232- PropertyMatch (key = "name" , value = ref .name ),
232+ PropertyMatch (key = "name" , value = ref .name . upper () ),
233233 PropertyMatch (
234234 key = "environmentid" , value = self .org_node_id .upper ()
235235 ),
@@ -271,7 +271,7 @@ def _uses_variable_edges(self):
271271 end = ConditionalEdgePath (
272272 kind = nk .REPO_VARIABLE ,
273273 property_matchers = [
274- PropertyMatch (key = "name" , value = ref .name ),
274+ PropertyMatch (key = "name" , value = ref .name . upper () ),
275275 PropertyMatch (
276276 key = "repository_id" , value = self .repository_node_id
277277 ),
@@ -311,7 +311,7 @@ def _uses_variable_edges(self):
311311 end = ConditionalEdgePath (
312312 kind = nk .ORG_VARIABLE ,
313313 property_matchers = [
314- PropertyMatch (key = "name" , value = ref .name ),
314+ PropertyMatch (key = "name" , value = ref .name . upper () ),
315315 PropertyMatch (
316316 key = "environmentid" , value = self .org_node_id .upper ()
317317 ),
0 commit comments