We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a022e commit 5990b2aCopy full SHA for 5990b2a
1 file changed
.github/workflows/updateCodeJSON.yml
@@ -1,6 +1,11 @@
1
name: Update Code.json
2
on:
3
workflow_dispatch:
4
+ push:
5
+ branches:
6
+ - "code-json-*"
7
+ paths:
8
+ - "code.json"
9
10
permissions:
11
contents: write
@@ -18,12 +23,12 @@ jobs:
18
23
19
24
- name: Update code.json
20
25
id: generator
21
- uses: DSACMS/automated-codejson-generator@main
26
+ uses: DSACMS/automated-codejson-generator@sachin/jsonValidationImplementation
22
27
with:
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- ADMIN_TOKEN: ${{ secrets.ADMIN_PAT }}
29
+ ADMIN_TOKEN: ${{ secrets.ADMIN_PAT }}
30
BRANCH: "main"
- SKIP_PR: "true"
31
+ SKIP_PR: "false"
32
33
- name: Post update information
34
run: |
@@ -33,4 +38,3 @@ jobs:
38
elif [ "${{ steps.generator.outputs.method_used }}" = "pull_request" ]; then
39
echo "Created pull request: ${{ steps.generator.outputs.pr_url }}"
35
40
fi
36
-
0 commit comments