Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
29 lines
658 B
YAML
29 lines
658 B
YAML
name: Update grammars
|
|
|
|
on: [ workflow_dispatch ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- run: npm install
|
|
- run: npm start
|
|
- name: Upload a Build Artifact
|
|
uses: actions/upload-artifact@v3.1.3
|
|
with:
|
|
name: grammars.dat
|
|
path: ./libprisma/grammars.dat
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
commit-message: Update grammars
|
|
title: Update grammars
|
|
branch: update-grammars
|