Skip to content

chore(deps): update actions/cache digest to 0c907a7 #20

chore(deps): update actions/cache digest to 0c907a7

chore(deps): update actions/cache digest to 0c907a7 #20

Workflow file for this run

name: dependabot
on:
pull_request:
branches: [main]
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}
jobs:
dependabot:
permissions:
contents: write
pull-requests: write
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- id: metadata
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2
- name: log metadata
run: echo "${DEPENDABOT_METADATA}"
env:
DEPENDABOT_METADATA: ${{ toJson(steps.metadata.outputs) }}
- name: automerge
if: ${{ !contains(steps.metadata.outputs.update-type, 'major' ) }}
run: gh pr merge --auto --squash "${PR_NUMBER}"
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
GH_REPO: ${{ github.repository }}
GH_TOKEN: ${{ github.token }}