You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The end-to-end tests failed after merging to the main branch. This indicates that the latest changes may have introduced issues with the core proxy functionality.
91
+
92
+
### Next Steps
93
+
1. Review the [failed workflow logs](${context.payload.repository.html_url}/actions/runs/${context.runId})
94
+
2. Check if this is a flaky test or a real issue
95
+
3. If it's a real issue, consider creating a hotfix
96
+
4. Update tests if the failure is due to intended changes
97
+
98
+
### Test Results
99
+
Check the uploaded artifacts for detailed test results and coverage information.
100
+
101
+
cc: @${context.actor}
102
+
`,
103
+
labels: ['bug', 'e2e-failure', 'urgent']
104
+
});
105
+
106
+
notify:
107
+
name: Notify on E2E Success
108
+
runs-on: ubuntu-latest
109
+
needs: e2e
110
+
if: success()
111
+
steps:
112
+
- name: Success notification
113
+
run: |
114
+
echo "✅ All end-to-end tests passed successfully!"
115
+
echo "The main branch is stable and ready for use."
0 commit comments