@xn-intenton-z2a/agentic-lib 7.1.87 → 7.1.88
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.
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
HOME: /root
|
|
69
69
|
|
|
70
70
|
- name: Upload screenshot
|
|
71
|
-
if:
|
|
71
|
+
if: ${{ !cancelled() }}
|
|
72
72
|
uses: actions/upload-artifact@v4
|
|
73
73
|
with:
|
|
74
74
|
name: screenshot
|
|
@@ -101,7 +101,7 @@ jobs:
|
|
|
101
101
|
dispatch-fix:
|
|
102
102
|
needs: [test, behaviour]
|
|
103
103
|
if: >-
|
|
104
|
-
|
|
104
|
+
!cancelled()
|
|
105
105
|
&& github.ref == 'refs/heads/main'
|
|
106
106
|
&& github.event_name != 'pull_request'
|
|
107
107
|
&& github.repository != 'xn-intenton-z2a/agentic-lib'
|
|
@@ -298,7 +298,7 @@ jobs:
|
|
|
298
298
|
maintain:
|
|
299
299
|
needs: [params]
|
|
300
300
|
if: |
|
|
301
|
-
|
|
301
|
+
!cancelled() &&
|
|
302
302
|
(needs.params.outputs.mode == 'full' || needs.params.outputs.mode == 'maintain-only') &&
|
|
303
303
|
needs.params.result == 'success'
|
|
304
304
|
runs-on: ubuntu-latest
|
|
@@ -386,7 +386,7 @@ jobs:
|
|
|
386
386
|
supervisor:
|
|
387
387
|
needs: [params, pr-cleanup, telemetry, maintain]
|
|
388
388
|
if: |
|
|
389
|
-
|
|
389
|
+
!cancelled() &&
|
|
390
390
|
(needs.params.outputs.mode == 'full' || needs.params.outputs.mode == 'dev-only') &&
|
|
391
391
|
needs.params.result == 'success'
|
|
392
392
|
runs-on: ubuntu-latest
|
|
@@ -422,7 +422,7 @@ jobs:
|
|
|
422
422
|
fix-stuck:
|
|
423
423
|
needs: [params, supervisor]
|
|
424
424
|
if: |
|
|
425
|
-
|
|
425
|
+
!cancelled() &&
|
|
426
426
|
needs.params.outputs.mode == 'full' &&
|
|
427
427
|
needs.params.result == 'success'
|
|
428
428
|
runs-on: ubuntu-latest
|
|
@@ -666,7 +666,7 @@ jobs:
|
|
|
666
666
|
review-features:
|
|
667
667
|
needs: [params, supervisor]
|
|
668
668
|
if: |
|
|
669
|
-
|
|
669
|
+
!cancelled() &&
|
|
670
670
|
(needs.params.outputs.mode == 'full' || needs.params.outputs.mode == 'review-only') &&
|
|
671
671
|
needs.params.result == 'success'
|
|
672
672
|
runs-on: ubuntu-latest
|
|
@@ -711,7 +711,7 @@ jobs:
|
|
|
711
711
|
dev:
|
|
712
712
|
needs: [params, review-features]
|
|
713
713
|
if: |
|
|
714
|
-
|
|
714
|
+
!cancelled() &&
|
|
715
715
|
(needs.params.outputs.mode == 'full' || needs.params.outputs.mode == 'dev-only') &&
|
|
716
716
|
needs.params.result == 'success'
|
|
717
717
|
runs-on: ubuntu-latest
|
|
@@ -945,7 +945,7 @@ jobs:
|
|
|
945
945
|
# ─── Post-merge: stats, schedule, mission check ────────────────────
|
|
946
946
|
post-merge:
|
|
947
947
|
needs: [params, dev, pr-cleanup]
|
|
948
|
-
if:
|
|
948
|
+
if: ${{ !cancelled() && needs.params.result == 'success' }}
|
|
949
949
|
runs-on: ubuntu-latest
|
|
950
950
|
steps:
|
|
951
951
|
- uses: actions/checkout@v6
|
|
@@ -967,7 +967,7 @@ jobs:
|
|
|
967
967
|
# ─── Schedule change (if requested) ────────────────────────────────
|
|
968
968
|
update-schedule:
|
|
969
969
|
needs: [params, dev]
|
|
970
|
-
if:
|
|
970
|
+
if: ${{ !cancelled() && needs.params.outputs.dry-run != 'true' && needs.params.outputs.schedule != '' && needs.params.result == 'success' }}
|
|
971
971
|
uses: ./.github/workflows/agentic-lib-schedule.yml
|
|
972
972
|
with:
|
|
973
973
|
frequency: ${{ needs.params.outputs.schedule }}
|
package/package.json
CHANGED