Bump com.google.guava:guava from 33.6.0-jre to 33.7.1-jre #60
Workflow file for this run
This file contains hidden or 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: Auto Merge Dependabot (Entur) | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| auto-merge: | |
| if: > | |
| github.event.pull_request.user.login == 'dependabot[bot]' && | |
| github.repository == 'entur/schema2proto' | |
| uses: entur/abt-gha-public/.github/workflows/auto-merge.yml@v1 | |
| with: | |
| # Semver gate: patch and minor are auto-merged, major needs manual review. | |
| auto-merge-patch: true | |
| auto-merge-minor: true | |
| auto-merge-major: false | |
| # Ecosystem gate: only library/package dependencies (maven) are auto-merged. | |
| # GitHub Actions and Docker updates are reviewed manually. | |
| auto-merge-dependencies: true | |
| auto-merge-docker: false | |
| auto-merge-github-actions: false | |
| channel-id: ${{ vars.ALERT_CHANNEL_ID }} | |
| secrets: inherit | |
| permissions: | |
| pull-requests: write | |
| contents: write |