From e0487f9b48daa7bc54f5ac3bc378317c0d30234b Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Sat, 10 Oct 2020 01:50:34 -0700 Subject: [PATCH] [github][action][irc] tweak the bot name --- .github/workflows/notify-irc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notify-irc.yml b/.github/workflows/notify-irc.yml index a47bce04..39be6a37 100644 --- a/.github/workflows/notify-irc.yml +++ b/.github/workflows/notify-irc.yml @@ -10,7 +10,7 @@ jobs: if: github.event_name == 'push' with: channel: "#lk" - nickname: my-github-notifier + nickname: lk-github message: | ${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }} ${{ join(github.event.commits.*.message) }} @@ -19,7 +19,7 @@ jobs: if: github.event_name == 'pull_request' with: channel: "#lk" - nickname: my-github-notifier + nickname: lk-github message: | ${{ github.actor }} opened PR ${{ github.event.html_url }} - name: irc tag created @@ -27,6 +27,6 @@ jobs: if: github.event_name == 'create' && github.event.ref_type == 'tag' with: channel: "#lk" - nickname: my-github-notifier + nickname: lk-github message: | ${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}