diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-31 15:36:04 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-01-03 11:56:53 +0100 |
| commit | ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b (patch) | |
| tree | d4fe7fab51c055acee55d73d70281d4041a57b5c /.github/workflows | |
| parent | Update parsers: gitcommit, norg, v (diff) | |
| download | nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar.gz nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar.bz2 nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar.lz nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar.xz nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.tar.zst nvim-treesitter-ac9b33d5bde6d266ad4020f8a9e9b5e2a5310a3b.zip | |
ci: trim final `"]` when parsers get added in update-lockfile.yml
See https://github.com/nvim-treesitter/nvim-treesitter/pull/4066
The diff will look different when a whole parser gets added:
```
@ ["gleam","revision"]
- "cfcbca3f8f734773878e00d7bfcedea98eb10be2"
+ "3eb2e1783f3bf6f85c16cdd150e2f256b2f6844e"
@ ["nix","revision"]
- "6b71a810c0acd49b980c50fc79092561f7cee307"
+ "1b69cf1fa92366eefbe6863c184e5d2ece5f187d"
@ ["wgsl_bevy"]
+ {"revision":"c81dc770310795caea5e00996505deba024ec698"}
```
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/update-lockfile.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index c95ecf73a..41ab41308 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -45,7 +45,7 @@ jobs: git config user.name "GitHub" git config user.email "noreply@github.com" git add lockfile.json - UPDATED_PARSERS=$(echo $(/tmp/jd -set /tmp/old_lockfile.json lockfile.json | grep @ | sed 's/","revision"\]//' | sed 's/@ \["//') | sed 's/ /, /g') + UPDATED_PARSERS=$(/tmp/jd -set /tmp/old_lockfile.json lockfile.json | sed -n '/@/s/","revision"]//;s/"]//;s/@ \["//p' | sed 'N;s/\n/, /') echo "UPDATED_PARSERS=$UPDATED_PARSERS" >> $GITHUB_ENV git commit -m "Update parsers: $UPDATED_PARSERS" || echo 'No commit necessary!' git clean -xf |
