Use Gradle Cache Action #27
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
# Dependabot Auto Merge | |
# | |
# This Action will automatically merge Pull Requests created by Dependabot. | |
name: 'Dependabot Auto Merge' | |
on: | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependency-auto-merge: | |
name: 'Auto merge Dependabot updates' | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: fastify/github-action-merge-dependabot@v3 | |
with: | |
use-github-auto-merge: true | |