Remove ServiceDiscovery libraries moved to dotnet/extensions #106
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
# Executes quarantined tests | |
# | |
# COPILOT INSTRUCTIONS: | |
# - Keep the 'paths:' list in sync across tests-outerloop.yml and | |
# tests-quarantine.yml | |
# - Validate that each path exists in the repository before adding or | |
# updating the list | |
# - No external YAML file is used—only the workflow YAMLs themselves | |
# hold the list | |
# | |
name: Quarantined Tests | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2,14 * * *' # Twice daily at 02:00 and 14:00 UTC | |
# Trigger on pull requests that modify infrastructure or workflow files | |
pull_request: | |
paths: | |
- '.github/actions/**' | |
- '.github/workflows/**' | |
- 'eng/**' | |
- '!eng/pipelines/**' | |
- '!eng/scripts/**' | |
- '!eng/*pack/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quarantine_tests: | |
uses: ./.github/workflows/specialized-test-runner.yml | |
with: | |
testRunnerName: "QuarantinedTestRunsheetBuilder" | |
extraRunSheetBuilderArgs: "-p:RunQuarantinedTests=true" | |
extraTestArgs: "--filter-trait quarantined=true" | |
enablePlaywrightInstall: true | |
ignoreTestFailures: true |