Update TODO.md #893
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
# Adds a comment telling dependabot to merge it's PRs after the CI passes if the update has non-breaking changes. | |
# Copied from https://github.com/mauriciabad/my-actions/blob/main/.github/workflows/auto-merge-dependabot.yml | |
name: Auto-merge dependabot PRs | |
on: pull_request | |
jobs: | |
auto-merge-dependabot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🤖 Auto-merge dependabot PRs | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
target: minor | |
github-token: ${{ secrets.AUTOMERGE_DEPENDABOT_TOKEN }} |