Skip to content

Commit b480993

Browse files
committed
no triggered tests
1 parent b05b7e3 commit b480993

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,9 @@ jobs:
4848
- name: Plan
4949
id: plan
5050
run: |
51-
# Set testsuites output based on event type
52-
if [[ "${{ github.event_name }}" == "schedule" ]]; then
53-
echo 'testsuites=["--workflow-dispatch-only"]' >> "$GITHUB_OUTPUT"
54-
else
55-
echo 'testsuites=["--issue-triggered-only", "--command-triggered-only", "--workflow-dispatch-only"]' >> "$GITHUB_OUTPUT"
56-
fi
51+
# trigered test suites do not work since issues/comments created from actions
52+
# do not trigger actions
53+
echo 'testsuites=["--workflow-dispatch-only"]' >> "$GITHUB_OUTPUT"
5754
e2e:
5855
runs-on: ubuntu-latest
5956
needs: clean

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
End-to-end tests for GitHub Agentic Workflows (gh-aw). Tests AI-powered workflows that automatically create issues, pull requests, and comments.
44

5+
[![E2E Tests](https://github.com/githubnext/gh-aw-test/actions/workflows/e2e.yml/badge.svg)](https://github.com/githubnext/gh-aw-test/actions/workflows/e2e.yml)
6+
57
## Quick Start
68

79
1. **Prerequisites**: [GitHub CLI](https://cli.github.com/), Git, authenticated GitHub account

0 commit comments

Comments
 (0)