Promote Cherry-Picks #38
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
# Promotes the cherry-picked release into all related channels | |
# Triggered by circleci job on amphtml | |
name: Promote Cherry-Picks | |
on: | |
workflow_dispatch: | |
inputs: | |
amp-version: | |
description: 'AMP version number (13 digits)' | |
required: true | |
type: string | |
auto-merge: | |
description: 'Enable PR auto-merge' | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
promote-cherry-picks: | |
uses: ampproject/cdn-configuration/.github/workflows/promote-reusable-workflow.yml@main | |
with: | |
channel-name: 'Cherry-pick' | |
ts-file: 'promote-cherry-picks.ts' | |
amp-version: ${{ github.event.inputs.amp-version }} | |
auto-merge: ${{ github.event.inputs.auto-merge }} | |
secrets: | |
access-token: ${{ secrets.ACCESS_TOKEN }} |