Skip to content

Commit aee8b7e

Browse files
fix
1 parent d60175b commit aee8b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bb-masking-semantic-type-global.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ jobs:
138138
let apiCallsFound = false;
139139
140140
if (changedFiles.includes('semantic-type.json')) {
141-
const exceptionStatuses = Object.keys(${{ toJSON(steps.apply-semantic-type.outputs) }} || {})
141+
const semanticTypeStatuses = Object.keys(${{ toJSON(steps.apply-semantic-type.outputs) }} || {})
142142
.filter(key => key.startsWith('status_code_'))
143143
.map(key => ({
144144
name: key.replace('status_code_', ''),
145145
status: ${{ toJSON(steps.apply-semantic-type.outputs) }}[key]
146146
}));
147147
148-
exceptionStatuses.forEach(({name, status}) => {
148+
semanticTypeStatuses.forEach(({name, status}) => {
149149
apiCallsFound = true;
150150
const success = status >= 200 && status < 300;
151151
commentBody += `- Semantic Type (${name}): ${success ? '✅' : '❌'} ${status}\n`;

0 commit comments

Comments
 (0)