Skip to content

notfound

notfound #8250

name: CI
on:
push:
branches-ignore:
- "dependabot/**"
schedule:
- cron: '0 10 * * *' # Once per day at 10am UTC
workflow_dispatch: # Manual trigger
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
permissions:
contents: read
jobs:
build:
name: Fail on purpose
runs-on: ubuntu-latest
steps:
- name: Not Found
run: notFound
send-notification:
name: Send Notification
needs: [ perform-release ]

Check failure on line 26 in .github/workflows/continuous-integration-workflow.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/continuous-integration-workflow.yml (Line: 26, Col: 14): Job 'send-notification' depends on unknown job 'perform-release'.
if: ${{ !success() }}
runs-on: ubuntu-latest
steps:
- name: Send Notification
uses: spring-io/spring-security-release-tools/.github/actions/send-notification@main
with:
webhook-url: ${{ secrets.SPRING_SECURITY_CI_GCHAT_WEBHOOK_URL }}