Skip to content

Update continuous-integration-workflow.yml #8251

Update continuous-integration-workflow.yml

Update continuous-integration-workflow.yml #8251

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: [ build ]
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 }}