dotnet-release #14958
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
name: dotnet-release | |
on: | |
schedule: | |
- cron: '0 08-22 * * MON,WED-FRI' | |
- cron: '*/10 08-22 * * TUE' | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'The dotnet/core ref to check for a new release against.' | |
required: false | |
type: string | |
default: '' | |
permissions: {} | |
jobs: | |
check-for-release: | |
permissions: | |
contents: write | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Check for new .NET releases | |
uses: ./actions/dotnet-release | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
state-token: ${{ secrets.ACCESS_TOKEN }} | |
ref: ${{ inputs.ref || vars.DOTNET_CORE_SHA }} |