Skip to content

.github/workflows/bump-versions.yml #44

.github/workflows/bump-versions.yml

.github/workflows/bump-versions.yml #44

Workflow file for this run

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # once a week
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
defaults:
run:
shell: pwsh
jobs:
update_file:
runs-on: windows-2025
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: ./eng/update-versions.ps1 -CreatePullRequest $true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}