@metasession.co/devaudit-cli 0.3.21 → 0.3.22

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metasession.co/devaudit-cli",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "description": "DevAudit CLI — installs, syncs, and operates the Metasession SDLC across consumer projects.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@clack/prompts": "^0.8.2",
36
- "@metasession.co/devaudit-plugin-sdk": "^0.3.21",
36
+ "@metasession.co/devaudit-plugin-sdk": "^0.3.22",
37
37
  "ajv": "^8.20.0",
38
38
  "commander": "^12.1.0",
39
39
  "consola": "^3.2.3",
@@ -472,11 +472,11 @@ jobs:
472
472
  name: Upload Evidence
473
473
  runs-on: {{RUNNER}}
474
474
  needs: [quality-gates, register-release]
475
- # `always()` instead of `!failure()` so failed gates still upload their
476
- # evidence `status=failed` is itself the audit trail. `!cancelled()`
477
- # still guards against partial state on operator-cancel.
478
- # DevAudit-Installer#96.
479
- if: ${{ always() && github.ref_name == '{{INTEGRATION_BRANCH}}' && needs.register-release.result == 'success' }}
475
+ # `!cancelled()` preserves failed-gate evidence on eligible integration
476
+ # pushes, while a pull request remains an intentionally inapplicable,
477
+ # cleanly skipped job. `always()` caused GitHub to mark this job cancelled
478
+ # when Register Release was correctly skipped on a no-REQ PR (#500).
479
+ if: ${{ !cancelled() && github.event_name != 'pull_request' && github.ref_name == '{{INTEGRATION_BRANCH}}' && needs.register-release.result == 'success' }}
480
480
  env:
481
481
  DEVAUDIT_BASE_URL_VAR: ${{ vars.DEVAUDIT_BASE_URL }}
482
482
  DEVAUDIT_API_KEY: ${{ secrets.DEVAUDIT_API_KEY }}
package/sdlc/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metasession.co/devaudit-sdlc",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "description": "DevAudit SDLC CLI Engine — cross-agent terminal-driven SDLC orchestrator.",
5
5
  "bin": {
6
6
  "devaudit-sdlc": "./src/bin/devaudit-sdlc.js"