Skip to content

Bump actions/download-artifact from 6 to 8 #20

Bump actions/download-artifact from 6 to 8

Bump actions/download-artifact from 6 to 8 #20

# SPDX-FileCopyrightText: The jaas Authors
# SPDX-License-Identifier: 0BSD
# see https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enabling-automerge-on-a-pull-request
name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'metio/jaas'
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}