⬆️ Bump xunit from 2.5.0 to 2.6.3 #129
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 non-functional Dependabot updates, which means anything but Castle.Core. | |
# All dependencies other than Castle.Core are either test frameworks or style/quality libraries. | |
name: Auto merge | |
on: pull_request | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependabot-auto-merge: | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Approve PR | |
if: contains(steps.metadata.outputs.dependency-names, 'Castle.Core') == false | |
run: gh pr review --approve "${{ github.event.pull_request.html_url }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable auto-merge | |
if: contains(steps.metadata.outputs.dependency-names, 'Castle.Core') == false | |
run: gh pr merge --auto --merge "${{ github.event.pull_request.html_url }}" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |