diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9bd5ac5501..d3dcbec5d7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -23,14 +23,3 @@ updates: - "org.awaitility:awaitility" - "com.google.code.findbugs:jsr305" - "org.springframework.boot*" - - - package-ecosystem: "maven" - directory: "/samples" - schedule: - interval: "weekly" - day: "saturday" - labels: ["type: task"] - groups: - development-dependencies: - patterns: - - "*" diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index f553544872..ca04973710 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -2,14 +2,24 @@ name: CI SNAPSHOT on: workflow_dispatch: + push: branches: - main - '*.x' + schedule: + - cron: '0 5 * * *' + +concurrency: + group: group-snapshot-for-${{ github.ref }} + cancel-in-progress: true + jobs: build-snapshot: uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@v1 + with: + gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks' || '' }} secrets: GRADLE_ENTERPRISE_CACHE_USER: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} diff --git a/.github/workflows/verify-staged-artifacts.yml b/.github/workflows/verify-staged-artifacts.yml index f3779350e6..4ed6077e6a 100644 --- a/.github/workflows/verify-staged-artifacts.yml +++ b/.github/workflows/verify-staged-artifacts.yml @@ -9,11 +9,11 @@ on: type: string jobs: - verify-staged-with-samples: + verify-staged-with-spring-integration: runs-on: ubuntu-latest steps: - - name: Checkout Samples Repo + - name: Checkout Spring Integration Repo uses: actions/checkout@v4 with: repository: spring-projects/spring-integration