Skip to content

Instantly share code, notes, and snippets.

@ipcrm
Created June 24, 2019 19:21
Show Gist options
  • Save ipcrm/6051c0560719dbe84e3b7fd23540acbe to your computer and use it in GitHub Desktop.
Save ipcrm/6051c0560719dbe84e3b7fd23540acbe to your computer and use it in GitHub Desktop.
tjhiongs
export const hasJenkinsfile: PredicatePushTest = predicatePushTest(
"hasJenkinsfile",
async p => {
const foundNumber = await projectUtils.countFiles(p, "**/Dockerfile");
return foundNumber !== 0;
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment