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
'⏩ lock for PR 111 (env: production) is not associated with PR 123 - skipping...'
103
+
expect(infoMock).toHaveBeenCalledWith(
104
+
`⏩ lock for PR ${COLORS.info}111${COLORS.reset} (env: ${COLORS.highlight}production${COLORS.reset}) is not associated with PR ${COLORS.info}123${COLORS.reset} - skipping...`
100
105
)
101
-
expect(debugMock).toHaveBeenCalledWith(
102
-
'⏩ no lock found for environment development - skipping...'
106
+
expect(infoMock).toHaveBeenCalledWith(
107
+
`⏩ no lock file found for environment ${COLORS.highlight}development${COLORS.reset} - skipping...`
`⏩ lock for PR ${COLORS.info}111${COLORS.reset} (env: ${COLORS.highlight}production${COLORS.reset}) is not associated with PR ${COLORS.info}123${COLORS.reset} - skipping...`
132
+
)
133
+
expect(infoMock).toHaveBeenCalledWith(
134
+
`⏩ no lock branch found for environment ${COLORS.highlight}development${COLORS.reset} - skipping...`
`⏩ lock for PR ${prNumber} (env: ${environment}) is not associated with PR ${context.payload.pull_request.number} - skipping...`
82
+
core.info(
83
+
`⏩ lock for PR ${COLORS.info}${prNumber}${COLORS.reset} (env: ${COLORS.highlight}${environment}${COLORS.reset}) is not associated with PR ${COLORS.info}${context.payload.pull_request.number}${COLORS.reset} - skipping...`
67
84
)
68
85
}
69
86
}else{
70
-
core.debug(
71
-
`⏩ no lock found for environment ${environment} - skipping...`
87
+
core.info(
88
+
`⏩ no lock file found for environment ${COLORS.highlight}${environment}${COLORS.reset} - skipping...`
0 commit comments