From 46e97adce2b5fbac3cdd93bcafb5abf030967a8c Mon Sep 17 00:00:00 2001 From: Sean Myers Date: Wed, 17 May 2023 11:10:23 -0700 Subject: [PATCH] chore: Fix PR Action (#142) Pull Requests for schema changes are no longer working. They started to break because in v1.5+, dist files were no longer included in the action -- so things are just busted. The recommendation both on the marketplace and the issue is to just use the recommended version (either v1.x or v1). We don't need advanced functionality, so tagging us to v1. --- .github/workflows/schema.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/schema.yml b/.github/workflows/schema.yml index 5253c4ff..5fa89391 100644 --- a/.github/workflows/schema.yml +++ b/.github/workflows/schema.yml @@ -38,7 +38,7 @@ jobs: run: "git diff src/specification/spec.json" - name: "Open pull request updating schema" - uses: "gr2m/create-or-update-pull-request-action@v1.9.2" + uses: "gr2m/create-or-update-pull-request-action@v1" with: author: "Sean Myers " branch: "feature/schema" @@ -49,4 +49,4 @@ jobs: path: "src/specification/spec.json" title: "Enhancement: Update spec.json" env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"