An open API service indexing awesome lists of open source software.

https://github.com/oliverswitzer/ifttt-concourse-resource-example

A simple example app for using the IFTTT concourse resource
https://github.com/oliverswitzer/ifttt-concourse-resource-example

Last synced: about 2 months ago
JSON representation

A simple example app for using the IFTTT concourse resource

Awesome Lists containing this project

README

        

# If This Then That (IFTTT) Concourse Resource Example

---

### You will need to add:

- An untracked file `secrets.yml` containing:

```.yml
ifttt_api_key:
```

- The IFTTT events that you would like to fire on success or failure of a build to `pipeline.yml`:

```.yml
jobs:
- name: test-app
plan:
...
on_success:
put: ifttt
params:
event_name: ""
on_failure:
put: ifttt
params:
event_name: ""

```