Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ concurrency:
cancel-in-progress: true

jobs:
# Bot-authored release pushes are verified by release-publish before publishing.
verify:
if: >-
github.event_name != 'push' ||
!(startsWith(github.event.head_commit.message, 'chore(release):') &&
github.event.head_commit.author.username == 'agentcore-devx-automation[bot]')
uses: ./.github/workflows/verify.yml
permissions:
contents: read
Expand All @@ -23,7 +28,10 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

e2e:
if: github.event_name == 'push'
if: >-

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't think these are run as part of the release workflow (yet) so release publish would never run e2e tests.

github.event_name == 'push' &&
!(startsWith(github.event.head_commit.message, 'chore(release):') &&
github.event.head_commit.author.username == 'agentcore-devx-automation[bot]')
uses: ./.github/workflows/e2e-test.yml
permissions:
id-token: write
Expand Down
Loading