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
- Host: GitHub
- URL: https://github.com/oliverswitzer/ifttt-concourse-resource-example
- Owner: oliverswitzer
- Created: 2017-05-10T14:45:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-10T15:19:33.000Z (about 8 years ago)
- Last Synced: 2025-02-15T20:23:36.149Z (3 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: ""```