@precisa-saude/cli 1.1.0 → 1.1.2

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.
@@ -24,11 +24,17 @@ on:
24
24
  workflow_dispatch:
25
25
 
26
26
  permissions:
27
- contents: read
27
+ # `contents: write` porque _release.yml (reusable) precisa criar
28
+ # commits e tags via semantic-release. Workflows reusáveis só
29
+ # conseguem pedir permissões que o caller também concede.
30
+ contents: write
28
31
  issues: write
29
32
  pull-requests: write
30
33
  deployments: write
31
34
  id-token: write
35
+ # `models: read` pelo mesmo motivo: review.yml chama GitHub Models
36
+ # via GITHUB_TOKEN no fallback de providers.
37
+ models: read
32
38
 
33
39
  concurrency:
34
40
  group: ${{ github.workflow }}-${{ github.ref }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@precisa-saude/cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Bootstrap and sync Precisa Saúde repositories — the `precisa` CLI.",
5
5
  "keywords": [
6
6
  "cli",
@@ -45,7 +45,7 @@
45
45
  "@types/prompts": "^2.4.9",
46
46
  "tsup": "^8.3.5",
47
47
  "typescript": "~5.7.3",
48
- "@precisa-saude/tsconfig": "1.1.0"
48
+ "@precisa-saude/tsconfig": "1.1.2"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=22.0.0"