Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Jorgen Lundman <[email protected]>
  • Loading branch information
lundman committed Dec 18, 2024
1 parent 5b97aff commit 127c931
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/notify-irc.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: "Notify IRC on Push to Development"
name: "Notify IRC on Push"

on:
push:
branches:
- main
- development

jobs:
notify:
Expand All @@ -16,8 +17,10 @@ jobs:
server: "irc.libera.chat"
nickname: zfs-consus
message: |
[openzfs] ${{ github.actor }} pushed ${{ github.event.commits.length }} commit${{ github.event.commits.length != 1 && 's' || '' }} to development
[openzfs] ${{ github.actor }} pushed ${{ github.event.commits.length }} commit${{ github.event.commits.length != 1 && 's' || '' }} to ${{ github.ref_name }}
${{ github.event.compare }}
${{ join(github.event.commits.*.message, '\n') }}
${{ join(github.event.commits[:8].*['id', 'message'] | map("format('{0:.7s} - {1}')"), '\n') }}
${{ github.event.commits.length > 8 && '...and more!' || '' }}

0 comments on commit 127c931

Please sign in to comment.