Announce test #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Notify IRC on Push to Development" | ||
on: | ||
push: | ||
branches: | ||
- development | ||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify IRC | ||
uses: rectalogic/notify-irc@v1 | ||
with: | ||
channel: "#OpenZFS-Windows" | ||
server: "irc.libera.chat" | ||
nickname: zfs-consus | ||
message: | | ||
Check failure on line 19 in .github/workflows/notify-irc.yml
|
||
[openzfs] ${{ github.actor }} pushed ${{ github.event.commits | length }} commit{{ github.event.commits | length != 1 && 's' || '' }} to development | ||
${{ github.event.compare }} | ||
${{ github.event.commits | map('commit', 'id') | map('commit', 'message') | join("\n") }} | ||
tests: | ||
needs: notify # This job will run only after the notify job completes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run Tests | ||
run: echo "Running tests..." | ||