Skip to content

Update CI Triggers #2763

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

Merged
merged 2 commits into from
Mar 19, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 1 addition & 5 deletions .github/workflows/test-all.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: Run All Tests
Copy link
Contributor

Choose a reason for hiding this comment

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

Since the other workflow is renamed to "Test Modified Packages", how about also renaming this one to "Test All Packages"?

Copy link
Member

Choose a reason for hiding this comment

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

+1

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.


on:
pull_request:
branches:
- master
types:
- closed
push:
schedule:
- cron: '0 6,18 * * *'
Copy link
Member

Choose a reason for hiding this comment

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

Do we still need the cron job?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I guess it hasn't been very helpful. Removing.


Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test-changed.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Push/PR
name: Test Modified Packages

on: [push, pull_request]
on:
pull_request:
branches:
- '*'
- '!master'
Copy link
Member

Choose a reason for hiding this comment

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

What does excluding master for PR mean? Don't we always create PR against master?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, I think I was confused about what "branches" means for PR. Fixing.


jobs:
test:
Expand Down