chore(deps-dev): bump typescript from 5.4.2 to 5.4.5 in /src/leapfrogai_ui #505
Workflow file for this run
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
# Catch all the things we ignore in the e2e workflow | |
name: e2e Skip Shim | |
on: | |
pull_request: | |
paths: | |
# Catch updates to the .github directory, unless it is the e2e.yaml files | |
- ".github/**" | |
- "!.github/workflows/e2e.yaml" | |
# Catch docs and website things | |
- "**.md" | |
- "adr/**" | |
- "docs/**" | |
- "website/**" | |
- "netlify.toml" | |
# Catch generic github metadata files | |
- "CODEOWNERS" | |
- ".gitignore" | |
- "LICENSE" | |
- ".pre-commit-config.yaml" | |
# Catch pytests | |
- "tests/pytest/**" | |
# Catch LFAI-UI things | |
- "src/leapfrogai_ui/**" | |
- "packages/ui/**" | |
# Catch changes to the repeater model | |
- "packages/repeater/**" | |
permissions: | |
contents: read | |
# This is here to act as a shim for branch protection rules to work correctly. | |
# This is ugly but this seems to be the best way to do this since: | |
# - Job names in a workflow must be unique | |
# - When paths are ignored not all jobs are reported to the branch protection rules | |
# - Multiple jobs of the same name are still required by branch protection rules | |
# For more info see below: | |
# https://github.com/orgs/community/discussions/54877 | |
# https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: e2e-skip-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Skipped | |
run: | | |
echo skipped |