Skip to content

redo all

redo all #19

Workflow file for this run

name: Notify IRC
on:
push:
branches:
- main # Or your desired branch
jobs:
notify-irc:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set execute permissions
run: chmod +x .github/workflows/notify-irc.sh
- name: Generate notification message
id: notify
run: |
echo "message=$(.github/workflows/notify-irc.sh "$COMMITS_JSON" "$GITHUB_ACTOR" "$GITHUB_REF_NAME" "$GITHUB_COMPARE_URL")" | tee -a /tmp/message
printf "%s\n" "message=$(cat /tmp/message)" >> $GITHUB_OUTPUT

Check failure on line 22 in .github/workflows/notify-irc.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/notify-irc.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
- name: Notify IRC
uses: rectalogic/notify-irc@v1
with:
channel: "#OpenZFS-Windows"
server: "irc.libera.chat"
nickname: "zfs-consus"
message: "${{ steps.notify.outputs.message }}"