Privacy improvements for CI

This commit is contained in:
mrrfv
2023-05-02 17:55:28 +02:00
parent 99c2930eac
commit c327c5ab42
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ async function getZeroTrustRules() {
if (!filtered_rule) return console.warn("No rule with matching name found - this is not an issue if you haven't run the create script yet. Exiting.");
console.log(`Deleting rule ${filtered_rule.name} with ID ${filtered_rule.id}`);
console.log(`Deleting rule ` + process.env.CI ? "(redacted, running in CI)" : `${filtered_rule.name} with ID ${filtered_rule.id}`);
const resp = await axios.request({
method: 'DELETE',