Don't use earliest
offset reset in the KafkaDslTests
#1025
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI SNAPSHOT | |
on: | |
workflow_dispatch: | |
inputs: | |
gradleOptions: | |
description: 'The Gradle CLI options: tasks, properties etc.' | |
required: false | |
type: string | |
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@v5 | |
with: | |
gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks --refresh-dependencies' || inputs.gradleOptions }} | |
secrets: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} |