.github/workflows: use a dedicated workflow for each event

This commit is contained in:
Enno Boland 2019-12-19 23:00:30 +01:00
parent eda74baaaa
commit 87319512a6
No known key found for this signature in database
GPG key ID: D09964719BDE9971
4 changed files with 71 additions and 44 deletions

View file

@ -1,44 +0,0 @@
name: "Push Notification"
on:
push:
branches: [master]
pull_request:
types: [opened, closed]
issues:
types: [opened, closed]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: irc push
uses: Gottox/irc-message-action@master
if: github.event_name == 'push' && github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: "${{ github.actor }} pushed ${{ github.event.compare }}"
- name: irc pull request
uses: Gottox/irc-message-action@master
if: github.event_name == 'pull_request' && github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: "${{ github.actor }} ${{ github.event.action }} pull request “${{ github.event.pull_request.title }}” ${{ github.event.pull_request.html_url }}"
- name: irc issue
uses: Gottox/irc-message-action@master
if: github.event_name == 'issues' && github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: "${{ github.actor }} ${{ github.event.action }} issue “${{ github.event.issue.title }}” ${{ github.event.issue.html_url }}"

24
.github/workflows/notify-issue.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
name: "Issue Notification"
on:
issues:
types: [opened, closed]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: "Issue Notification"
uses: Gottox/irc-message-action@master
if: github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: >-
${{ github.actor }}
${{ github.event.action }} issue
“${{ github.event.issue.title }}”
${{ github.event.issue.html_url }}

24
.github/workflows/notify-pr.yaml vendored Normal file
View file

@ -0,0 +1,24 @@
name: "Pull Request Notification"
on:
pull_request:
types: [opened, closed]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: "Pull Request Notification"
uses: Gottox/irc-message-action@master
if: github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: >-
${{ github.actor }}
${{ github.event.action }} pull request
“${{ github.event.pull_request.title }}”
${{ github.event.pull_request.html_url }}

23
.github/workflows/notify-push.yaml vendored Normal file
View file

@ -0,0 +1,23 @@
name: "Push Notification"
on:
push:
branches: [master]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: "Push Notification"
uses: Gottox/irc-message-action@master
if: github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: >-
${{ github.actor }}
pushed
${{ github.event.compare }}"