Skip to content

Commit

Permalink
gh workflows: remove sending PR messages
Browse files Browse the repository at this point in the history
These clutter up IRC too much.

Fixes #71
  • Loading branch information
ThomasAdam committed May 9, 2020
1 parent 29e9a8a commit 24b2b46
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,18 @@ jobs:
with:
channel: "#fvwm"
nickname: fvwm3-gh
message: |
${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
${{ join(github.event.commits.*.message) }}
message: ${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
- name: irc pull request
uses: rectalogic/notify-irc@v1
if: github.event_name == 'pull_request'
with:
channel: "#fvwm"
nickname: fvwm3-gh
message: |
${{ github.actor }} opened PR ${{ github.event.html_url }}
message: ${{ github.actor }} opened PR ${{ github.event.html_url }}
- name: irc tag created
uses: rectalogic/notify-irc@v1
if: github.event_name == 'create' && github.event.ref_type == 'tag'
with:
channel: "#fvwm"
nickname: fvwm-gh
message: |
${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}
message: ${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}

0 comments on commit 24b2b46

Please sign in to comment.