.github/workflows: fix messages
This commit is contained in:
parent
85d48cd1bd
commit
928fe3ba78
1 changed files with 3 additions and 6 deletions
9
.github/workflows/notify-irc.yaml
vendored
9
.github/workflows/notify-irc.yaml
vendored
|
@ -19,8 +19,7 @@ jobs:
|
|||
channel: "#xbps"
|
||||
nickname: void-packages
|
||||
tls: true
|
||||
message: |
|
||||
${{ github.actor }} pushed ${{ github.event.compare }}
|
||||
message: "${{ github.actor }} pushed ${{ github.event.compare }}"
|
||||
- name: irc pull request
|
||||
uses: rectalogic/notify-irc@v1
|
||||
if: github.event_name == 'pull_request' && github.repository == 'void-linux/void-packages'
|
||||
|
@ -29,8 +28,7 @@ jobs:
|
|||
channel: "#xbps"
|
||||
nickname: void-packages
|
||||
tls: true
|
||||
message: |
|
||||
${{ github.actor }} ${{ github.event.action }} pull request #${{ github.event.pull_request.html_url }}“ ${{ github.event.pull_request.number }}”
|
||||
message: "${{ github.actor }} ${{ github.event.action }} pull request #${{ github.event.pull_request.title }}“ ${{ github.event.pull_request.number }}”"
|
||||
- name: irc issue
|
||||
uses: rectalogic/notify-irc@v1
|
||||
if: github.event_name == 'issues' && github.repository == 'void-linux/void-packages'
|
||||
|
@ -39,5 +37,4 @@ jobs:
|
|||
channel: "#xbps"
|
||||
nickname: void-packages
|
||||
tls: true
|
||||
message: |
|
||||
${{ github.actor }} ${{ github.event.action }} issue #${{ github.event.issue.number }} “${{ github.event.issue.html_url }}”
|
||||
message: "${{ github.actor }} ${{ github.event.action }} issue #${{ github.event.issue.number }} “${{ github.event.issue.title }}”"
|
||||
|
|
Loading…
Reference in a new issue