Skip to content

hphuangg/drone-line-notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

drone-line-notify

Usage

drone 1.0+

steps:
- name: line-notify
  image: hphuang/drone-line-notify
  settings:
    message: 'hello world'
  environment:
    LINE_NOTIFY_ACCESS_TOKEN:
      from_secret: line_notify_access_token
  when:
    branch:
    - master
    event:
    - push

drone 0.8

pipeline:
  line-notify:
    group: notify
    image: hphuang/drone-line-notify
    secrets: [ line_notify_access_token ]
    message: 'hello world'
    when:
      event: push
      branch: master

Reference