This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
.github/workflows/knative-releasability.yaml #467
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
# Copyright 2022 The Knative Authors. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# This file is automagically synced here from github.com/knative-sandbox/knobots | ||
name: 'Releasability' | ||
on: | ||
schedule: | ||
- cron: '0 1 * * 1-5' # 6am Pacific, weekdays. | ||
workflow_dispatch: # Manual trigger. | ||
inputs: | ||
releaseFamily: | ||
description: 'Release? (vX.Y)' | ||
required: false | ||
moduleReleaseFamily: | ||
description: 'Module Release? (vX.Y)' | ||
required: false | ||
slackChannel: | ||
description: 'Slack Channel? (release-#)' | ||
required: false | ||
jobs: | ||
releasability: | ||
uses: knative/actions/.github/workflows/reusable-releasability.yaml@main | ||
Check failure on line 26 in .github/workflows/knative-releasability.yaml GitHub Actions / .github/workflows/knative-releasability.yamlInvalid workflow file
|
||
with: | ||
releaseFamily: ${{ github.event.inputs.releaseFamily || 'v1.8' }} | ||
moduleReleaseFamily: ${{ github.event.inputs.moduleReleaseFamily || 'v0.35' }} | ||
slackChannel: ${{ github.event.inputs.slackChannel || 'release-1dot5' }} | ||
secrets: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |