Skip to content

Commit

Permalink
base64 everything!
Browse files Browse the repository at this point in the history
Signed-off-by: Jorgen Lundman <[email protected]>
  • Loading branch information
lundman committed Dec 20, 2024
1 parent 7ea3c2a commit 02cc3fd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/notify-irc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,17 @@ jobs:
run: |
.github/workflows/notify-irc.sh "$COMMITS_JSON" "$GITHUB_ACTOR" "$GITHUB_REF_NAME" "$GITHUB_COMPARE_URL"
- name: Decode Message for IRC Notify
id: decode-message
run: |
ENCODED_MESSAGE="${{ steps.notify-irc.outputs.message }}"
DECODED_MESSAGE=$(echo "$ENCODED_MESSAGE" | base64 --decode)
echo "decoded_message=$DECODED_MESSAGE" >> $GITHUB_ENV
- name: Notify IRC
uses: rectalogic/notify-irc@v1
with:
channel: "#OpenZFS-Windows"
server: "irc.libera.chat"
nickname: "zfs-consus"
message: "${{ steps.notify.outputs.message }}"

message: "${{ env.decoded_message }}"

0 comments on commit 02cc3fd

Please sign in to comment.