0193-WebUI-EnhancedTRVSettingsPage #355
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
# Automatically merge Dependabot PRs when version comparison is within the range | |
# that is configured in .github/auto-merge.yml | |
# yamllint disable rule:truthy | |
--- | |
name: Auto-Merge Dependabot PRs | |
on: | |
pull_request_target: | |
branches-ignore: | |
- 'gh-pages' | |
# default read-only permission | |
permissions: | |
contents: read | |
jobs: | |
auto-merge: | |
permissions: | |
contents: write # ahmadnassri/action-dependabot-auto-merge | |
pull-requests: write # ahmadnassri/action-dependabot-auto-merge | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check if PR should be auto-merged | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
# This must be a personal access token with push access | |
github-token: ${{ secrets.AUTO_MERGE_TOKEN }} | |
# By default, squash and merge, so Github chooses nice commit messages | |
command: squash and merge |