Update Stubs #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Stubs | |
on: | |
workflow_dispatch: | |
jobs: | |
update_stubs: | |
runs-on: ubuntu-latest | |
permissions: { pull-requests: "write", contents: "write" } | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Stubs with LPM | |
env: { GITHUB_TOKEN: "${{ github.token }}" } | |
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 . --remotes |