cppcheck/.github/workflows/irc.yml

25 lines
800 B
YAML
Raw Normal View History

name: "IRC Push Notification"
on: [pull_request, create]
jobs:
test:
2020-04-19 11:44:22 +02:00
if: github.repository == 'danmar/cppcheck'
runs-on: ubuntu-20.04
steps:
- name: irc pull request
uses: rectalogic/notify-irc@v1
if: github.event_name == 'pull_request'
with:
channel: "#cppcheck"
nickname: cppcheck-github-notifier
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: "#cppcheck"
nickname: cppcheck-github-notifier
message: |
${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}