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

Update Go-Getter test workflow to run on pull requests #417

Merged
merged 1 commit into from
Feb 14, 2023
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
9 changes: 8 additions & 1 deletion .github/workflows/go-getter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: go-getter

on: [push]
on:
push:
branches:
- v2
pull_request:

Choose a reason for hiding this comment

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

Out of curiosity what does this empty section imply?

Choose a reason for hiding this comment

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

I presume it means that it runs on all PRs pushing to v2?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah good call out. This will actually run for all pull requests. I can update for any pull_requests against v2

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Updated

branches:
- v2


env:
TEST_RESULTS_PATH: /tmp/test-results
Expand Down