npm: bump tunnelmole from 2.2.15 to 2.3.1 #146
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: Automerge dependabot PRs | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
pr-number: | |
description: 'PR number' | |
required: true | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'PLACEHOLDER' | |
run: echo "PLACEHOLDER for a future unit-test" | |
auto-merge: | |
name: 🤖 Automerge dependa[bot] PRs | |
needs: [unit-test] | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Merge PR from dependabot | |
uses: fastify/github-action-merge-dependabot@v3 | |
with: | |
target: minor | |
pr-number: ${{ github.event.inputs.pr-number }} |