shouldShowJob()

in src/GitHubStatusDisplay.js [385:401]


  shouldShowJob(name) {
    const jobNameFilter = this.state.jobNameFilter;
    if (jobNameFilter.length > 0 && !this.nameMatches(name, jobNameFilter)) {
      return false;
    }
    const isDockerJob = name.startsWith("ci/circleci: docker");
    const isGCJob = name.startsWith("ci/circleci: ecr_gc");
    const isCIFlowShouldRunJob = name.endsWith("ciflow_should_run");
    const isGenerateTestMatrixJob = name.endsWith("generate-test-matrix");
    return !(
      isDockerJob ||
      name === "welcome" ||
      isGCJob ||
      isCIFlowShouldRunJob ||
      isGenerateTestMatrixJob
    );
  }