@aliaksandarpratashchyk/kickcat 0.5.6 → 0.5.8

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": "@aliaksandarpratashchyk/kickcat",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "description": "Infrastructure-as-code toolkit for GitHub repository automation. Includes reusable workflows, utilities, and a CLI to install workflow templates.",
5
5
  "bin": {
6
6
  "kickcat": "./dist/bundle.js"
@@ -1,5 +1,5 @@
1
1
  # Keep KickCat issues in sync with GitHub issue events
2
- name: kickcat-sync-issue
2
+ name: kickcat-pull-issue
3
3
 
4
4
  on:
5
5
  issues:
@@ -7,7 +7,6 @@ on:
7
7
 
8
8
  permissions:
9
9
  contents: write
10
- issues: write
11
10
 
12
11
  jobs:
13
12
  sync:
@@ -25,8 +24,12 @@ jobs:
25
24
  with:
26
25
  node-version: 20
27
26
 
27
+ - name: Install dependencies
28
+ run: npm ci
29
+
28
30
  - name: Sync issue into repository storage
29
31
  env:
32
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
33
  ACTION: ${{ github.event.action }}
31
34
  ISSUE_NUMBER: ${{ github.event.issue.number }}
32
35
  run: |
@@ -1,5 +1,5 @@
1
1
  # Keep KickCat labels in sync with GitHub label events
2
- name: kickcat-sync-label
2
+ name: kickcat-pull-label
3
3
 
4
4
  on:
5
5
  label:
@@ -7,7 +7,6 @@ on:
7
7
 
8
8
  permissions:
9
9
  contents: write
10
- issues: write
11
10
 
12
11
  jobs:
13
12
  sync:
@@ -25,8 +24,12 @@ jobs:
25
24
  with:
26
25
  node-version: 20
27
26
 
27
+ - name: Install dependencies
28
+ run: npm ci
29
+
28
30
  - name: Sync label into repository storage
29
31
  env:
32
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
33
  ACTION: ${{ github.event.action }}
31
34
  LABEL_NAME: ${{ github.event.label.name }}
32
35
  run: |
@@ -7,7 +7,6 @@ on:
7
7
 
8
8
  permissions:
9
9
  contents: write
10
- issues: write
11
10
 
12
11
  jobs:
13
12
  sync:
@@ -23,8 +22,12 @@ jobs:
23
22
  with:
24
23
  node-version: 20
25
24
 
25
+ - name: Install dependencies
26
+ run: npm ci
27
+
26
28
  - name: Sync milestone into repository storage
27
29
  env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
31
  ACTION: ${{ github.event.action }}
29
32
  MILESTONE_NUMBER: ${{ github.event.milestone.number }}
30
33
  run: |
@@ -31,12 +31,15 @@ jobs:
31
31
  with:
32
32
  node-version: 20
33
33
 
34
+ - name: Install dependencies
35
+ run: npm ci
36
+
34
37
  - name: Push entities to GitHub
35
38
  env:
36
39
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
40
  run: |
38
41
  set -euo pipefail
39
- npx @aliaksandarpratashchyk/kickcat entity push all --log-level=info
42
+ npx @aliaksandarpratashchyk/kickcat entity push all --log-level=debug
40
43
 
41
44
  - name: Commit changes
42
45
  id: commit