Skip to content

Test message

Test message #32

Workflow file for this run

name: Test message
on:
workflow_dispatch:
concurrency:
group: deploy
cancel-in-progress: true
jobs:
notify-start:
name: Notify release start
uses: ./.github/workflows/notify-slack-start.yml
secrets:
slackToken: ${{ secrets.SLACK_BOT_RELEASE_TOKEN}}
with:
channel: 12gobiking-test
message: Test
notifyOnlyOnFailure: false
release:
runs-on: ubuntu-latest
name: release
steps:
- name: sleep
run: sleep 10s
shell: bash
notify-end:
if: always()
name: Notify release end
needs: [ notify-start, release ]
uses: ./.github/workflows/notify-slack-end.yml

Check failure on line 33 in .github/workflows/test-slack.yml

View workflow run for this annotation

GitHub Actions / Test message

Invalid workflow file

The workflow is not valid. In .github/workflows/test-slack.yml (Line: 33, Col: 11): Error from called workflow ho-nl/release-slack-action/.github/workflows/notify-slack-end.yml@b9bdf71558b3837ed8b1759338ed124e2fca62d1 (Line: 35, Col: 14): Unexpected symbol: '$inputs'. Located at position 1 within expression: $inputs.result^
secrets:
slackToken: ${{ secrets.SLACK_BOT_RELEASE_TOKEN}}
with:
time: ${{ needs.notify-start.outputs.time }}
result: ${{ needs.release.result }}
channel: 12gobiking-test
message: Test
notifyOnlyOnFailure: false