Files
zed/extensions/workflows/run_tests.yml
Finn Evers bfb876c782 Improve extension CI concurrency (#43935)
While this does work for PRs and such, it does not work with main...
Hence, moving the token a few chars to the right to fix this issue.

Release Notes:

- N/A
2025-12-01 19:29:20 +00:00

14 lines
455 B
YAML

# Generated from xtask::workflows::extensions::run_tests within the Zed repository.
# Rebuild with `cargo xtask workflows`.
name: extensions::run_tests
on:
pull_request:
branches:
- '**'
jobs:
call_extension_tests:
uses: zed-industries/zed/.github/workflows/extension_tests.yml@main
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.ref_name == 'main' && github.sha || 'anysha' }}pr
cancel-in-progress: true