-
Notifications
You must be signed in to change notification settings - Fork 0
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 improvements #40
CI improvements #40
Conversation
65982a2
to
6f2003c
Compare
- name: Notify About Failure | ||
if: > | ||
failure() && github.event_name != 'pull_request' && | ||
github.repository_owner == 'agoric' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this check? To avoid running it in fork repos?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To reduce distractions during development, notifications are restricted to only scheduled runs or manual triggers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To avoid running it in fork repos?
I reckon you're referring to github.repository_owner == 'agoric'
? The condition github.repository_owner == 'agoric'
is actually used in the agoric-sdk
workflows primarily for Slack notifications, which is why I decided to adopt it. Not to avoid running it in fork repos.
The PR does the following:
main
branch.