From e29be2774839dbffc235d702e85bdea148dba012 Mon Sep 17 00:00:00 2001 From: Austin Ellis Date: Wed, 25 Dec 2024 03:16:25 -0600 Subject: [PATCH] Update action.yml --- .github/workflows/action.yml | 51 +++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 4d46e17..6911a1f 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -1,2 +1,51 @@ name: Notify IRC Notifico -uses: openzfsonwindows/notify-irc@v1 \ No newline at end of file +uses: openzfsonwindows/notify-irc@v1 +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' + 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' \ No newline at end of file