chore: refactor app layout computations to take them out of the hot loop #1709
Workflow file for this run
This file contains hidden or 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: "Pull Requests" | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: thehanimo/pr-title-checker@v1.4.3 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| pass_on_octokit_error: false | |
| configuration_path: .github/pr-title-checker-config.json | |
| generate-files: | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/create-github-app-token@v1 | |
| id: app-token | |
| with: | |
| app-id: ${{ vars.SKIM_RS_BOT_APP_ID }} | |
| private-key: ${{ secrets.SKIM_RS_BOT_PRIVATE_KEY }} | |
| - name: Checkout Git repo | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{github.event.pull_request.head.ref}} | |
| repository: ${{github.event.pull_request.head.repo.full_name}} | |
| token: ${{ steps.app-token.outputs.token }} | |
| - run: rustup toolchain install | |
| - name: Cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Generate files | |
| run: | | |
| cargo run -- --man > man/man1/sk.1 | |
| cargo run -- --shell bash > shell/completion.bash | |
| cargo run -- --shell zsh > shell/completion.zsh | |
| cargo run -- --shell fish > shell/completion.fish | |
| cargo run -- --shell nushell > shell/completion.nu | |
| - name: Push modified files | |
| run: | | |
| git branch -v | |
| git config user.email "skim-bot@skim-rs.github.io" | |
| git config user.name "Skim bot" | |
| git commit -am 'chore: generate completions & manpage' || exit 0 | |
| git push |