Presume we build a website with a static website generator (jekyll, jbake, hugo, ...)
The output website is in directory output.
How do we check if there are no new broken url's in a pull request?
After building it from a pull request, by checking the files in the output directory.
It always checks out a new branch, because parameter branch defaults to master, so it ignores the changes in the pull request.
Document how to tell it to use the current branch (don't check anything out).
Presume we build a website with a static website generator (jekyll, jbake, hugo, ...) The output website is in directory
output
.How do we check if there are no new broken url's in a pull request? After building it from a pull request, by checking the files in the output directory.
It always checks out a new branch, because parameter
branch
defaults tomaster
, so it ignores the changes in the pull request. Document how to tell it to use the current branch (don't check anything out).