Skip to content

Create action.yml

Create action.yml #1

Workflow file for this run

name: 'Notify IRC Notifico'
description: 'Send a notification message to an IRC channel'
author: 'Andrew Wason'
inputs:
server:
description: 'IRC server'
default: 'irc.irc4fun.net'
required: true
port:
description: 'IRC server port'
default: 6697
required: true
password:
description: 'IRC server password'
required: false
channel: #IRC4Fun,#Development
description: 'IRC channel to message'
required: true
channel_key:
description: 'IRC channel password'
required: false
nickname: GitHub
description: 'IRC user nickname'

Check failure on line 23 in .github/workflows/action.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/action.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
required: true
sasl_password:
description: 'IRC user SASL password'
required: false
eventpath:
description: 'path to EVENT_FILE'
required: true
notice:
description: 'Use NOTICE instead of PRIVMSG'
default: false
required: false
tls:
description: 'Connect to server using TLS'
default: true
required: false
verbose:
description: 'Enable verbose logging'
default: false
required: false
ansicolor:
description: 'Enable ansi color text'
default: false
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'message-square'
color: 'yellow'