Skip to content

Test message

Test message #21

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: ho-nl/release-slack-action/.github/workflows/notify-slack-start.yml@main
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, activate-pm2 ]

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

View workflow run for this annotation

GitHub Actions / Test message

Invalid workflow file

The workflow is not valid. .github/workflows/test-slack.yml (Line: 32, Col: 28): Job 'notify-end' depends on unknown job 'activate-pm2'.
uses: ho-nl/release-slack-action/.github/workflows/notify-slack-end.yml@main
secrets:
slackToken: ${{ secrets.SLACK_BOT_RELEASE_TOKEN}}
with:
time: ${{ needs.notify-start.outputs.time }}
result: ${{ needs.activate-pm2.result }}
channel: 12gobiking-test
message: Test
notifyOnlyOnFailure: false