Bump io.micrometer:micrometer-registry-prometheus from 1.14.2 to 1.14.3 #2
Workflow file for this run
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: dependabot-auto-merge | |
on: pull_request | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
# "gh pr" command requires that we are in a git repository | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Enable auto-merge for Dependabot PRs | |
run: gh pr merge --auto --rebase ${{ github.event.pull_request.number }} | |
env: | |
GH_TOKEN: ${{ secrets.GH_PAT }} |