Skip to content

Commit 8781d31

Browse files
fix(executor-e2e): trigger only PR validation (#1501)
* fix(executor-e2e): trigger on safe output changes Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> * fix(executor-e2e): trigger only PR validation Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
1 parent a2bd920 commit 8781d31

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

tests/executor-e2e/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ build.
2727

2828
| File | Purpose |
2929
| --- | --- |
30-
| `azure-pipelines.yml` | Hand-authored ADO pipeline (daily + manual). Builds `ado-aw`, builds the harness, runs it against AgentPlayground. |
30+
| `azure-pipelines.yml` | Hand-authored ADO pipeline (daily schedule on `main` + path-filtered PR validation + manual). Builds `ado-aw`, builds the harness, runs it against AgentPlayground. |
3131
| `README.md` | This file. |
3232

3333
The harness itself lives in

tests/executor-e2e/azure-pipelines.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@
1313
# Register it in msazuresphere/AgentPlayground — see tests/executor-e2e/README.md.
1414

1515
trigger: none
16-
pr: none
16+
pr:
17+
branches:
18+
include:
19+
- main
20+
paths:
21+
include:
22+
- src/safe_outputs/**
23+
- scripts/ado-script/src/executor-e2e/**
24+
- tests/executor-e2e/**
1725

1826
schedules:
1927
- cron: "0 5 * * *"

0 commit comments

Comments
 (0)