Prevent corrupted content if self-closing tags are used #124
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: Auto-merge | |
on: | |
pull_request_target: | |
branches: | |
- master | |
jobs: | |
auto-merge: | |
name: Check and enable auto-merge | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Enable auto-merge for dependency update | |
uses: wearerequired/auto-merge-dependency-update-action@v1 | |
with: | |
github-token: ${{ secrets.PAT_WITH_REPO_SCOPE }} | |
allowed-update-types: 'devDependencies:minor, devDependencies:patch, dependencies:patch' |