Skip to content

Bump Proc from 0.6.1 to 0.6.2 #365

Bump Proc from 0.6.1 to 0.6.2

Bump Proc from 0.6.1 to 0.6.2 #365

Workflow file for this run

name: Dependabot PR actions
on:
pull_request:
types:
- opened
- reopened
- synchronize
- labeled
- unlabeled
jobs:
dependabot:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: GitHub App token
id: github_app_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_id: 22958780
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
5.0.x
6.0.x
- name: Check out code
uses: actions/checkout@v3
with:
token: ${{ steps.github_app_token.outputs.token }}
- name: Update the changelog
uses: dangoslen/dependabot-changelog-helper@v2
with:
version: 'Unreleased'
- name: Update packages.lock.json
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependabot') }}
run: dotnet restore --force-evaluate
- name: Commit the changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update changelog & packages.lock.json"
branch: ${{ github.head_ref }}
commit_user_name: dependabot[bot]
commit_user_email: [email protected]
commit_options: '--signoff'