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
letparentBodyContent=`This issue tracks all no-op runs from agentic workflows in this repository. Each workflow run that completes with a no-op message (indicating no action was needed) posts a comment here.
46
46
@@ -85,13 +85,13 @@ These are successful outcomes, not failures, and help provide transparency into
85
85
labels: [parentLabel],
86
86
});
87
87
88
-
core.info(`✓ Created agent runs issue #${newIssue.data.number}: ${newIssue.data.html_url}`);
88
+
core.info(`✓ Created no-op runs issue #${newIssue.data.number}: ${newIssue.data.html_url}`);
89
89
return{
90
90
number: newIssue.data.number,
91
91
node_id: newIssue.data.node_id,
92
92
};
93
93
}catch(error){
94
-
core.error(`Failed to create agent runs issue: ${getErrorMessage(error)}`);
94
+
core.error(`Failed to create no-op runs issue: ${getErrorMessage(error)}`);
95
95
throwerror;
96
96
}
97
97
}
@@ -143,16 +143,16 @@ async function main() {
143
143
return;
144
144
}
145
145
146
-
core.info("Agent succeeded with only noop outputs - posting to agent runs issue");
146
+
core.info("Agent succeeded with only noop outputs - posting to no-op runs issue");
147
147
148
148
const{ owner, repo }=context.repo;
149
149
150
-
// Ensure agent runs issue exists
151
-
letagentRunsIssue;
150
+
// Ensure no-op runs issue exists
151
+
letnoopRunsIssue;
152
152
try{
153
-
agentRunsIssue=awaitensureAgentRunsIssue();
153
+
noopRunsIssue=awaitensureAgentRunsIssue();
154
154
}catch(error){
155
-
core.warning(`Could not create agent runs issue: ${getErrorMessage(error)}`);
155
+
core.warning(`Could not create no-op runs issue: ${getErrorMessage(error)}`);
156
156
// Don't fail the workflow if we can't create the issue
0 commit comments