CI: massage the issues-messages a little more, fix logic
This commit is contained in:
parent
a289518a8a
commit
413614e14b
8
.github/workflows/issues.yml
vendored
8
.github/workflows/issues.yml
vendored
@ -11,18 +11,18 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: notify-new
|
name: notify-new
|
||||||
uses: rectalogic/notify-irc@v1
|
uses: rectalogic/notify-irc@v1
|
||||||
if: ${{ github.event.issue.state }} == "open"
|
if: github.event.issue.state == "open"
|
||||||
with:
|
with:
|
||||||
server: chat.freenode.net
|
server: chat.freenode.net
|
||||||
channel: "#calamares"
|
channel: "#calamares"
|
||||||
nickname: gh-issues
|
nickname: gh-issues
|
||||||
message: "New issue [${{ github.event.issue.title }}](${{ github.event.issue.url }})"
|
message: "[${{ github.event.issue.title }}](${{ github.event.issue.url }}) opened by ${{ github.actor }}"
|
||||||
-
|
-
|
||||||
name: notify-closed
|
name: notify-closed
|
||||||
uses: rectalogic/notify-irc@v1
|
uses: rectalogic/notify-irc@v1
|
||||||
if: ${{ github.event.issue.state }} != "open"
|
if: github.event.issue.state != "open"
|
||||||
with:
|
with:
|
||||||
server: chat.freenode.net
|
server: chat.freenode.net
|
||||||
channel: "#calamares"
|
channel: "#calamares"
|
||||||
nickname: gh-issues
|
nickname: gh-issues
|
||||||
message: "Closed issue [${{ github.event.issue.title }}](${{ github.event.issue.url }})"
|
message: "[${{ github.event.issue.title }}](${{ github.event.issue.url }}) closed by ${{ github.actor }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user