latest 19 messages by InnovAnon-Inc
+
[2020-05-22T18:11:44Z]
InnovAnon-Inc
on a git server, there's a directory where you can put hooks, and these are shell scripts
+
[2020-05-22T18:10:28Z]
InnovAnon-Inc
without direct access to the hook files to write scripts, I don't think it's possible. GitHub's webhooks seem geared toward web apis
+
[2020-05-22T18:05:30Z]
InnovAnon-Inc
I'm just seeing a bunch of php code for it, so I reckon it can't.
+
[2020-05-22T18:03:54Z]
InnovAnon-Inc
it looks like you can setup a service on heroku's free tier, and have the first repo's webhook notify that server.
+
[2020-05-22T18:03:08Z]
InnovAnon-Inc
I don't think it needs to "react." Firstly, I haven't done a whole lot with webhooks, so ymmv, but... https://gist.github.com/cowboy/619858 and... https://github-bot-tutorial.readthedocs.io/en/latest/gidgethub-for-webhooks.html
+
[2020-05-22T17:48:36Z]
InnovAnon-Inc
I think you can just setup a webhook and have it do whatever complex logic you need. Cron probably won't work.
+
[2020-05-22T17:39:27Z]
InnovAnon-Inc
*yes
+
[2020-05-22T17:39:22Z]
InnovAnon-Inc
if you own the repo, yet. Otherwise, setup a cron job to poll it
+
[2020-05-22T15:17:35Z]
InnovAnon-Inc
sorry. meant to notify mydog2
+
[2020-05-22T15:14:48Z]
InnovAnon-Inc
does this help? https://stackoverflow.com/questions/25446157/creating-a-fork-with-the-github-v3-api-rest
+
[2020-05-22T12:21:48Z]
InnovAnon-Inc
I'd have to look. I don't do much more than create/fork repos, push and pull. very over-simplified dev ops pipeline
+
[2020-05-22T12:19:51Z]
InnovAnon-Inc
it saves time. sometimes a lot of time. for example, when cloning the cmake repo.
+
[2020-05-22T12:18:35Z]
InnovAnon-Inc
if we don't need the full history, then to save bandwidth, I suppose
+
[2020-05-22T12:16:57Z]
InnovAnon-Inc
so... fork the 3rd party repo, do a git --depth=1 --branch 8.x-9.x https://github.com/<yourname>/<repo name>.git, make changes, git push, the make a pull request... right?
+
[2020-05-22T11:50:24Z]
InnovAnon-Inc
create a pull request (whatever that is) once you've finished your changes on your local repo
+
[2020-05-22T11:37:48Z]
InnovAnon-Inc
I figured out my problem. ghr and github-release are fine. The problem was parallelism: 4 in my .circleci config
+
[2020-05-22T01:38:42Z]
InnovAnon-Inc
the #git channel told me to come here
+
[2020-05-22T01:38:25Z]
InnovAnon-Inc
no I need CircleCI to create the release and push the artifacts
+
[2020-05-22T01:17:40Z]
InnovAnon-Inc
what's the recommended way to release artifacts on github? ghr and github-release aren't doing it for me