@xn-intenton-z2a/agentic-lib 7.1.30 → 7.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
# 2. Proactive (supervise job): LLM-driven strategic decisions via agentic-step.
|
|
13
13
|
# - Gathers full repo context (issues, PRs, workflows, features, activity)
|
|
14
14
|
# - Chooses actions: dispatch workflows, create/label/close issues, respond to discussions
|
|
15
|
-
# - Runs on
|
|
15
|
+
# - Runs on every trigger (workflow_run, workflow_dispatch, schedule)
|
|
16
16
|
|
|
17
17
|
name: agent-supervisor
|
|
18
18
|
run-name: "agent-supervisor [${{ github.ref_name }}]"
|
|
@@ -175,7 +175,7 @@ jobs:
|
|
|
175
175
|
# ─── Proactive: LLM-driven strategic decisions ───────────────────────
|
|
176
176
|
supervise:
|
|
177
177
|
needs: params
|
|
178
|
-
if:
|
|
178
|
+
if: always() && needs.params.result == 'success'
|
|
179
179
|
runs-on: ubuntu-latest
|
|
180
180
|
steps:
|
|
181
181
|
- uses: actions/checkout@v4
|