Skip to content

Commit

Permalink
chore: Fix PR Action (#142)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
iph committed May 17, 2023
1 parent ccb646b commit 46e97ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <seanmyers608@gmail.com>"
branch: "feature/schema"
Expand All @@ -49,4 +49,4 @@ jobs:
path: "src/specification/spec.json"
title: "Enhancement: Update spec.json"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 46e97ad

Please sign in to comment.