Fix syntax error in apt package test

The notification configuration for the apt package test was missing
a dollar sign in front of the variables leading to failing variable
interpolation.
This commit is contained in:
Sven Klemm 2020-07-06 10:42:33 +02:00 committed by Sven Klemm
parent 9c026b2194
commit e6020e88d8

View File

@ -84,6 +84,6 @@ jobs:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_COLOR: '#ff0000'
SLACK_USERNAME: GitHub Action
SLACK_TITLE: APT Package ${{ matrix.image }} PG${{ matrix.pg }} {{ job.status }}
SLACK_TITLE: APT Package ${{ matrix.image }} PG${{ matrix.pg }} ${{ job.status }}
SLACK_MESSAGE: ${{ github.event.head_commit.message }}
uses: rtCamp/action-slack-notify@v2.0.2