diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-03-29 11:16:26 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-03-29 11:16:26 -0400 |
commit | 228b5c3a324f62bf848c98d98861a8d166cf62bb (patch) | |
tree | 0c524dc5d1bcaf7a77ad8211b5074dcb7899a54c /.github | |
parent | c52b2d49959667f0e8b633fcf1ca393f576d3b55 (diff) | |
download | lite-xl-plugins-228b5c3a324f62bf848c98d98861a8d166cf62bb.tar.gz lite-xl-plugins-228b5c3a324f62bf848c98d98861a8d166cf62bb.zip |
Clarified workflow.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/update-stubs.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/update-stubs.yml b/.github/workflows/update-stubs.yml index 671846e..323a059 100644 --- a/.github/workflows/update-stubs.yml +++ b/.github/workflows/update-stubs.yml @@ -9,8 +9,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: Update Stubs with LPM - env: { GITHUB_TOKEN: "${{ github.token }}" } + env: + GITHUB_TOKEN: "${{ github.token }}" + LPM_PLUGINS: "https://raw.githubusercontent.com/adamharrison/lite-xl-maintenance/latest/lpm-plugins/gh.lua" run: | git config --global user.name "Github Actions" && git config --global user.email "<>" wget https://github.com/lite-xl/lite-xl-plugin-manager/releases/download/latest/lpm.x86_64-linux -O lpm && chmod +x lpm - ./lpm --plugin https://raw.githubusercontent.com/adamharrison/lite-xl-maintenance/latest/lpm-plugins/gh.lua gh check-stubs-update-pr --staging . + ./lpm gh check-stubs-update-pr --staging . |