There was an error while loading. Please reload this page.
1 parent cca7aff commit 379e101Copy full SHA for 379e101
1 file changed
.github/workflows/e2e-plugin-tests.yml
@@ -62,6 +62,11 @@ on:
62
# Run automatically when a PR receives the "safe to test" label.
63
pull_request_target:
64
types: [labeled]
65
+ # Run automatically when code lands on v2 — i.e. a PR is merged into v2 or
66
+ # something is pushed to it directly — so the release branch is validated
67
+ # post-merge (build + publish + sanity + OIDC against the merged code).
68
+ push:
69
+ branches: [v2]
70
# Allow manual triggering from the Actions UI for debugging.
71
workflow_dispatch:
72
inputs:
@@ -94,7 +99,8 @@ jobs:
94
99
name: '1. Build .vsix'
95
100
if: |
96
101
contains(github.event.pull_request.labels.*.name, 'safe to test') ||
97
- github.event_name == 'workflow_dispatch'
102
+ github.event_name == 'workflow_dispatch' ||
103
+ github.event_name == 'push'
98
104
runs-on: ubuntu-latest
105
timeout-minutes: 20
106
0 commit comments