Gregor Martynus
Gregor Martynus
I think I'd leave breaking change detection to a secondary tool which can work with the output of anicca. That way folks can implement their own rules of what changes...
Thanks Patrik, it’s a little more complicated, because the URL schema changes. if `GH_PAT1` is set, we want this: ```sh REMOTE_REPO="https://${GH_PAT}@github.com/${GITHUB_REPOSITORY}.git" && \ ``` if `GITHUB_TOKEN` is set, we want...
Thanks Patrik! I’ve done the change via https://github.com/maxheld83/ghpages/pull/18/commits/e8abdfeba2c44d35400c73119f07a95b091c675c. Does that the script look good to you now?
@jasonEtco told me about the `x-access-token` username trick, he is using it in his actions to make authenticated git commands work. Let me reach out and see if we can...
So far all we heard was "we don’t want to promise anything", I’ll contact support next as they will follow up. But I think that even if it changes, it...
> The problem I am still encountering is that the environment does not build in GitHub pages unless you use a created PAT. Ouch, that is a deal breaker. I...
I’ve added a `curl` request just so it can be tested. If it works, we should only send the request if `GITHUB_TOKEN` is set, as it will fail if `GH_PAT`...
I got a response from GitHub Support 
Did anyone try to use the [Request a page build](https://developer.github.com/v3/repos/pages/#request-a-page-build) API after pushing? Will that work @tcbyrd?
The latest I heard is that only the first build of GitHub Pages needs to happen by an admin. After that pushing to `gh-pages` using `GITHUB_TOKEN` should work. I wonder...