Skip to content

Bump FastCloner from 3.4.0 to 3.4.3 #112

Bump FastCloner from 3.4.0 to 3.4.3

Bump FastCloner from 3.4.0 to 3.4.3 #112

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
env:
DOTNET_VERSION: '10.0.x'
jobs:
package-test:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run tests only for .NET 10.0
run: dotnet test --no-build --verbosity normal --logger GitHubActions -f net10.0
dependabot:
runs-on: ubuntu-latest
needs: package-test
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}