Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: added paths-ignore to e2e-wasm #6340

Merged
merged 2 commits into from
May 21, 2024
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/e2e-wasm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ on:
- synchronize
# trigger workflow if PR is marked ready for review.
- ready_for_review

paths-ignore:
Copy link
Contributor

Choose a reason for hiding this comment

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

I've seen a warning pop-up when merging main to ics20v2 (same warning was present for this PR https://github.com/cosmos/ibc-go/actions/runs/9172311273/workflow)

wonder if the paths globs can actually just match on any *.go files (though dunno if github syntax here can do this) or if we can use negations for other file types.

- 'docs/**'
- '**.md'
- 'LICENSE'

jobs:
# determine-image-tag will either output the PR number e.g. pr-1234 or the string main.
Expand Down
Loading