-
Is there a way to be notified if our repos suddenly become non-compliant? Either due to our stuff changing or due to new requirements being added to the CLO stuff. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @duglin
Maybe embedding a report summary somewhere frequently viewed in the project's website or readme could help noticing changes earlier in the meantime. They are generated dynamically and refreshed very often, so they should always be up to date. |
Beta Was this translation helpful? Give feedback.
-
@duglin there is actually a way you could get notified right now: you can run the You can find a similar example here 🙂 Hope this helps! |
Beta Was this translation helpful? Give feedback.
@duglin there is actually a way you could get notified right now: you can run the
clomonitor-linter
periodically (as a GitHub scheduled workflow, for example) with your desired pass score. The workflow will fail if the score is below the threshold provided (you can set it to 100 if you wish), which would trigger the notification.You can find a similar example here 🙂
Hope this helps!