[misc] Run agent-network e2e nightly + on manual dispatch (#6629)

The suite builds combined/proxy/client from source and drives live
provider traffic, so running it per push/PR is too costly. Switch to a
nightly schedule (03:00 UTC) plus workflow_dispatch, and drop the
now-unneeded fork guard that only mattered for pull_request runs.
This commit is contained in:
Maycon Santos
2026-07-01 17:23:50 +02:00
committed by GitHub
parent 2ab99eefa6
commit 7c0d8cbae0

View File

@@ -1,10 +1,10 @@
name: Agent Network E2E
on:
push:
branches:
- main
pull_request:
# Nightly at 03:00 UTC, plus on demand from the Actions tab.
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
@@ -13,7 +13,6 @@ concurrency:
jobs:
e2e:
name: Agent Network E2E
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
timeout-minutes: 45
steps: