calamares/.github/workflows/issues.yml

29 lines
815 B
YAML
Raw Normal View History

name: issues
2021-01-31 22:01:41 +01:00
on:
issues:
types: [opened, reopened, closed]
jobs:
irc:
runs-on: ubuntu-latest
steps:
-
2021-01-31 22:01:41 +01:00
name: notify-new
uses: rectalogic/notify-irc@v1
if: github.event.issue.state == "open"
with:
server: chat.freenode.net
2021-01-28 15:29:44 +01:00
channel: "#calamares"
nickname: gh-issues
message: "[${{ github.event.issue.title }}](${{ github.event.issue.url }}) opened by ${{ github.actor }}"
2021-01-31 22:01:41 +01:00
-
name: notify-closed
uses: rectalogic/notify-irc@v1
if: github.event.issue.state != "open"
2021-01-31 22:01:41 +01:00
with:
server: chat.freenode.net
channel: "#calamares"
nickname: gh-issues
message: "[${{ github.event.issue.title }}](${{ github.event.issue.url }}) closed by ${{ github.actor }}"