Skip to content

Test providers RC releases #481

Test providers RC releases

Test providers RC releases #481

---
name: Test providers RC releases
on: # yamllint disable-line rule:truthy
schedule:
- cron: "0 0,12 * * *"
workflow_dispatch:
inputs:
rc_testing_branch:
# If a branch is given, the workflow will use it for deployment and testing.
# If no branch is provided, the workflow will create a new rc testing branch
# for deployment and testing.
description: |
rc_testing_branch: existing testing branch
(Either rc_testing_branch or issue_url is required, and you cannot give both.)
required: false
default: ''
issue_url:
description: |
issue_url: the GitHub issue URL that tracks the status of Providers release
(Either rc_testing_branch or issue_url is required, and you cannot give both.)
required: false
base_git_rev:
description: 'The base git revision to test Providers RCs'
required: false
type: string
default: 'main'
jobs:
create-branch-for-testing-rc-release:
runs-on: 'ubuntu-20.04'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.base_git_rev }}
token: ${{ secrets.BOT_ACCESS_TOKEN }}