LSSTDESC / DC2-analysis

General analysis tools for the DC2 Data Set.

Home Page:http://lsstdesc.org/DC2-analysis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Should Notebook outputs cleared check be run on push to branch or only on PR?

wmwv opened this issue · comments

Should the GitHub Actions check-notebook-outputs script for this DC2-analysis repo be run on every push to a branch or only on a PR?

My preference would be only on PR, because I don't want to be discouraged from pushing changes.

But I'm happy to yield to popular opinion.

@yymao @JoanneBogart Do you have clear opinions on this?

yep, that's fine. I guess it should still run if the commit is pushed to master. We can change the trigger to:

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]