We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb57238 commit 0a28a6bCopy full SHA for 0a28a6b
dist/index.js
@@ -52,10 +52,6 @@ async function run() {
52
repo: repo_name,
53
});
54
55
- if (dry_run) {
56
- console.log('[dry-run] Workflows', workflows);
57
- }
58
-
59
let workflow_ids = workflows.map(w => w.id);
60
61
// Gets all workflow runs for the repository
@@ -73,6 +69,9 @@ async function run() {
73
69
del_runs.push(run);
74
70
core.debug(` Added to del list '${run.name}' workflow run ${run.id}`);
75
71
}
72
+ else {
+ core.debug(` Skipped '${run.name}' workflow run ${run.id}`);
+ }
76
77
78
console.log(`💬 found total of ${del_runs.length} workflow run(s)`);
0 commit comments