chore(deps): bump github.com/charmbracelet/lipgloss from 0.12.1 to 0.13.0 #182
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: "🤖 Merge: Dependabot PR" | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
env: | |
# This is required to use the 'gh' CLI in actions. | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
# See https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request. | |
dependabot: | |
if: | | |
github.event_name == 'pull_request' && | |
github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Enable auto-merge for Dependabot PRs | |
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' | |
run: gh pr merge --auto --squash "${{ github.event.pull_request.html_url }}" |