We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c39e9f9 commit d3b722eCopy full SHA for d3b722e
.github/workflows/irc.yml
@@ -8,9 +8,11 @@ jobs:
8
name: IRC notification
9
steps:
10
- name: Format message
11
- id: message
12
run: |
13
- echo "message=$(echo ${{ github.actor }} pushed $(echo ${{ github.event.commits[0].message }} | head -n 1 | tr -d "'") ${{ github.event.commits[0].url }}" >> $GITHUB_ENV
+ echo commitmessage=$(echo "${{ github.event.commits[0].message }}" | head -n 1) >> $GITHUB_ENV
+ - name: Format message
14
+ run: |
15
+ echo message="${{ github.actor }} pushed ${{ env.commitmessage }} ${{ github.event.commits[0].url }}" >> $GITHUB_ENV
16
- name: IRC notification
17
uses: Gottox/irc-message-action@v2
18
with:
0 commit comments