浏览代码

use different action for getting the gist

[ci skip]
Sebastian Stenzel 2 年之前
父节点
当前提交
5e19cd409f
共有 1 个文件被更改,包括 7 次插入5 次删除
  1. 7 5
      .github/workflows/error-db.yml

+ 7 - 5
.github/workflows/error-db.yml

@@ -38,18 +38,20 @@ jobs:
             return await github.graphql(query, variables)
       - name: Get Gist
         id: get-gist
-        uses: sergeysova/gist-read-action@v1
+        uses: andymckay/get-gist-action@master
         with:
-          gist_id: accba9fb9555e7192271b85606f97230
-          file_name: errorcodes.json
+          gistURL: https://gist.github.com/cryptobot/accba9fb9555e7192271b85606f97230
+      - name: Show Gist contents
+        id: run
+        run: |
+          cat ${{ steps.get-gist.outputs.file }}
       - name: Merge Error Code Data
         run: |
-          echo $GIST_DATA | jq -c '.' > original.json
+          jq -c '.' ${{ steps.get-gist.outputs.file }} > original.json
           echo $DISCUSSION | jq -c '.repository.discussion | .comments = .comments.totalCount' | .answer = .answer.url | {(.title|tostring) : .}' > new.json
           jq -s '.[0] * .[1]' new.json original.json > merged.json
         env:
           DISCUSSION: ${{ steps.query-data.outputs.result }}
-          GIST_DATA: ${{ steps.get-gist.outputs.content }}
       - name: Patch Gist
         uses: exuanbo/actions-deploy-gist@v1
         with: