Skip to content

Commit

Permalink
Update actions (#967)
Browse files Browse the repository at this point in the history
Signed-off-by: Knative Automation <automation@knative.team>
  • Loading branch information
knative-automation committed Apr 19, 2022
1 parent 01f1139 commit 67b43ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/knative-go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
name: Test

on:
push:
branches: [ 'main', 'release-*' ]

pull_request:
branches: [ 'main', 'release-*' ]

Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/knative-releasability.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,19 @@ on:
releaseFamily:
description: 'Release? (vX.Y)'
required: false
default: 'v1.4'
moduleReleaseFamily:
description: 'Module Release? (vX.Y)'
required: false
default: 'v0.31'
slackChannel:
description: 'Slack Channel? (release-#)'
required: false
default: 'release-1dot4'

jobs:
releasability:
uses: knative/actions/.github/workflows/releasability.yaml@main
with:
releaseFamily: ${{ github.event.inputs.releaseFamily }}
moduleReleaseFamily: ${{ github.event.inputs.moduleReleaseFamily }}
slackChannel: ${{ github.event.inputs.slackChannel }}
releaseFamily: ${{ github.event.inputs.releaseFamily || 'v1.4' }}
moduleReleaseFamily: ${{ github.event.inputs.moduleReleaseFamily || 'v0.31' }}
slackChannel: ${{ github.event.inputs.slackChannel || 'release-1dot4' }}
secrets:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}

0 comments on commit 67b43ee

Please sign in to comment.