Skip to content

Bump ApprovalTests from 5.9.0 to 6.0.0 #114

Bump ApprovalTests from 5.9.0 to 6.0.0

Bump ApprovalTests from 5.9.0 to 6.0.0 #114

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu ]
runs-on: ${{ matrix.os }}-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- name: Checkout
uses: actions/checkout@v4
- name: build and test
run: dotnet test
auto-merge:
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: auto-merge
if: |
github.actor == 'dependabot[bot]' &&
github.event_name == 'pull_request'
run: |
./merge_dependabot.sh
env:
PR_URL: ${{github.event.pull_request.html_url}}
# this secret needs to be in the settings.secrets.dependabot
GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}}