search for: webhook

Displaying 20 results from an estimated 27 matches for "webhook".

Did you mean: webhooks
2008 May 20
0
Catching a Shopify WebHooks in a Rails App
I have a rails app that sends the user over to Shopify to process the purchase of the product. I want to use their webhooks feature to track when those products have been purchased. So my question is: Does anyone know what the receiving end should look like? Or does anyone have a sample they would be willing to post? Second question: How can I simulate this on my local machine so I can develop this before trying t...
2016 Jul 19
10
GitHub Hooks
...ld chime in. But they *do* stop pushes from going in, which is what we want. Maybe we would need a web-service (see 2) to get this working. How does Swift solve this? Do we really need a linear history on the projects, or just on the umbrella project? 2. Post-commit umbrella updates We can use webhooks: https://developer.github.com/webhooks/ This would hit some webpage / buildbot and make them update the llvm-projects (with sub-modules) via git. We'd be required to maintain a piece of web service somewhere, but the maintenance of that web-service will be a lot less than the current SVN/Gi...
2017 Apr 20
2
Permissions for llvm-mirror - Setting up Libc++ Appveyor builders
...would like to request collaborator permissions for the Libc++ github mirror. > > I plan to use the access to setup Appveyor buildbots for libc++. In order to do this I need to be listed as a collaborator on Github. > > The alternative to Github access would be setting up the correct webhooks for llvm.org/git/libcxx.git <http://llvm.org/git/libcxx.git>, but this seems harder to both do and maintain. > > /Eric > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailma...
2017 Apr 20
2
Permissions for llvm-mirror - Setting up Libc++ Appveyor builders
...idered a number of other ways to setup Appveyor but I concluded this was the best/easiest way to do it. > The other options I considered for configuring Appveyor are: > > (1) Use the official LLVM github mirrors. > > This has the issue of requiring the implementation of custom Git webhooks, which would require > modifying and maintaining changes to the existing LLVM Git infrastructure, which in itself > would require getting access to the LLVM servers to make the changes. > > (2) Setup my own ever more unofficial github mirror > > This has all the same problems...
2017 Apr 19
3
Permissions for llvm-mirror - Setting up Libc++ Appveyor builders
Hi Will, I would like to request collaborator permissions for the Libc++ github mirror. I plan to use the access to setup Appveyor buildbots for libc++. In order to do this I need to be listed as a collaborator on Github. The alternative to Github access would be setting up the correct webhooks for llvm.org/git/libcxx.git, but this seems harder to both do and maintain. /Eric -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170419/97bb1c80/attachment.html>
2017 Apr 20
2
Permissions for llvm-mirror - Setting up Libc++ Appveyor builders
...ther ways to setup Appveyor but I concluded this was the best/easiest way to do it. >> The other options I considered for configuring Appveyor are: >> >> (1) Use the official LLVM github mirrors. >> >> This has the issue of requiring the implementation of custom Git webhooks, which would require >> modifying and maintaining changes to the existing LLVM Git infrastructure, which in itself >> would require getting access to the LLVM servers to make the changes. >> >> (2) Setup my own ever more unofficial github mirror >> >> This ha...
2016 Jul 26
2
[RFC] One or many git repositories?
> On Jul 26, 2016, at 10:32 AM, Renato Golin <renato.golin at linaro.org> wrote: > > On 26 July 2016 at 17:59, Mehdi Amini <mehdi.amini at apple.com> wrote: >> When exporting a commit from the monorepo to one of the read-only >> repository, it should be possible to generate a “git-svn-id”-like the same >> way we’re doing when exporting from SVN today. >
2015 Aug 04
4
Working Documentation Toolchain [GSoC]
...re and creates a issue. 3. The doc is built and a link is provided to preview the doc. 5. Staff reviews the docs, gives comments either on pagure or github (two way synced) 4. Once the staff approves the doc is built and doc site updated. ==Infra== 1. A backend server listing to Github and Pagure webhooks and mirroring content. 2. A http site displaying the temporary docs. 3. A pagure instance ==Testing == 1. Fork the https://github.com/kunaaljain/test-centos-docs 2. Add new content to docs folder in mardown language. 3. Update the mkdocs.yml file and add the new file you just created with approp...
2015 Apr 07
1
GSoC - Syncing docs between GitHub and CentOS's git repo
Hi! I am applying for Google Summer of Code 2015 with a project creating a new doc toolchain for CentOS. I plan to use GitHub to store a copy of the documentation, and users can send fork / send PR to this repo. Then a server program monitors this repo and syncs changes between GitHub and CentOS?s own git repo. So the key is to automatically sync repo between GitHub and CentOS. I think there
2019 Dec 09
4
MIssing llvm-commits messages
Has anyone noticed missing llvm-commits messages? Not all commits seem to generate emails to llvm-commits. For example, I can’t find an email for this commit: https://github.com/llvm/llvm-project/commit/4a6e13ad88ddcc0ab92ace49d4c761921e7f7070 <https://github.com/llvm/llvm-project/commit/4a6e13ad88ddcc0ab92ace49d4c761921e7f7070> Nor does it appear here:
2015 Jul 08
2
Finished a prototype of GSoC project: Implement a new doc toolchain
...ange and another to discuss it. Furthermore I feel like we are > creating an educational challenge (which could be resolved with some great > docs and a bot that posted in the PR on github) to get people to understand > what is going on. > I agree! That time pagure was not having such webhooks and API. We are working with pingou(pagure creator). Fortunately it has now. Yes that's what bot's aim was, to point out to the link. > > 4. When the pull request can be accepted, it is marked as ?fixed?, and the > pull request on github is automatically merged > > > OK...
2019 Oct 17
3
[cfe-dev] How soon after the GitHub migration should committing with git-llvm become optional?
I'm also a strong proponent of not requiring the wrapper. The linear history piece was important enough to make the cost worth it.  The extra branches piece really isn't.  If someone creates a branch that's not supposed to exist, we just delete it. No big deal.  It will happen, but the cost is so low I don't worry about it. There's a bunch of things in our developer policy
2016 Jul 26
2
[RFC] One or many git repositories?
...just like we do when exporting from SVN today I think. >> (The script might be slightly less complex since git is natively handling the export we’re doing today). > > And this would be on a similar level of complexity than sub-modules > update (just the script), I assume. Some hook/webhook that can delay > because the "source-of-truth" is somewhere else. > > The better thing in this scenario is that the "source-of-truth" is > also the "well organised one", whereas in the sub-modules it's the > other way round. You still missed the *m...
2015 Aug 04
0
Working Documentation Toolchain [GSoC]
...c is built and a link is provided to preview the doc. > 5. Staff reviews the docs, gives comments either on pagure or github > (two way synced) > 4. Once the staff approves the doc is built and doc site updated. > > ==Infra== > > 1. A backend server listing to Github and Pagure webhooks and mirroring content. > 2. A http site displaying the temporary docs. > 3. A pagure instance > > ==Testing == > > 1. Fork the https://github.com/kunaaljain/test-centos-docs > 2. Add new content to docs folder in mardown language. > 3. Update the mkdocs.yml file and add the...
2020 Feb 05
1
Stream Monitoring Service
Hi All! anyone interested in an external service that will listen to your internet stream and send you a message when it goes down, or when the audio fails? Have been looking for such a service without success, and have set something up that can handle a few additional stations. regards Robert
2014 Feb 27
0
How to Integrate Twilio With Your Rails 4 App
*Disclosure: I am a Developer Evangelist at Twilio.* Hey everyone, I just published a blog post on how to use Webhooks and Concerns to integrate Twilio into a Rails 4 application. I hope some of you might find this useful: https://www.twilio.com/blog/2014/02/twilio-on-rails-integrating-twilio-with-your-rails-4-app.html I've also published the full source for this tutorial on Github: https://github.com/cra...
2020 Aug 21
0
Translations using Weblate
...nd upstream). Weblate has a lot of checks for problems in messages and even style nits, so hopefully this should greatly reduce the issues in translations. An important configuration bit needed is to notify Weblate every time the are commits pushed in the repositories; this is done by using GitHub webhooks, which must be configured per repository as described in the Weblate documentation [3]. The preferred way to get translation updates on GitHub/Gitlab is via PRs; I know that we generally don't use them, however I believe we can accept them from Weblate, as it would simplify things a bit. Ther...
2016 Feb 25
0
RFC: Move the test-suite LLVM project to GitHub?
...official main repo anyway. They also have an additional option on top of the protected branch feature that only allows pull requests to be merged if they've passed certain status checks from external CI services like Travis CI, AppVeyor, etc. It's also possible to make buildbot send status webhooks to github for this, but this only helps if the buildbot is configured to do pre-merge testing the way Rust does rather than post-commit testing like LLVM's buildbots do now. I've found the required status checks are picky about not accepting green statuses that were run against an out-of-d...
2015 Jul 10
0
Finished a prototype of GSoC project: Implement a new doc toolchain
...issing something. > > That is our priority. There was a couple of roadblocks, which I think are > now cleared. So we will be again working on full sync, and by this weekend > we hope we can achieve this. > Yes two way sync is very problematic. A mess of GitHub and pagure webhooks > and API, listening to each other. > Our aim is two way sync, if we fail, we can fall back to one way sync from > github to pagure. This will still achieve our goal, but then maybe not > every CentOS docs maintainer be open to idea of using Github. We had some > sort...
2019 Aug 05
0
samba dlz. bind9 nslookup is wrong
...om. torrent 300 IN CNAME patrikx3.com. test 300 IN CNAME patrikx3.com. mysql 300 IN CNAME patrikx3.com. git 300 IN CNAME patrikx3.com. webhook 300 IN CNAME patrikx3.com. sync 300 IN CNAME patrikx3.com. cloud 300 IN CNAME patrikx3.com. redis 300 IN CNAME patrikx3.com. server...