Skip to content

nttu-ysc/drone-line-notify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Drone-line-notify plugin

You can issue the line notify token from LINE Notify. See LINE Notify doc.

Binary usage

With Go installed

go install github.com/nttu-ysc/drone-line-notify@latest

then you can use drone-line-notify

drone_line_notify_help

Usage

Add plugin in steps and set settings variable line_access_token

kind: pipeline
name: Drone ci

steps:
- name: line notify
    image: shundevhub/drone-line-notify
    settings:
      line_access_token:
        from_secret: YOUR_ACCESS_TOKEN
    when:
      event:
        - push

Support multiple access token

Join the access token with comma ,

line_access_token: ACCESS_TOKEN_1,ACCESS_TOKEN_2,ACCESS_TOKEN_3,...