nightly-api-gateway-conformance #534
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
# Dispatch to the consul-k8s-workflows with a nightly cron | |
name: nightly-api-gateway-conformance | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# Run nightly at 12AM UTC/8PM EST/5PM PST. | |
- cron: '0 0 * * *' | |
# these should be the only settings that you will ever need to change | |
env: | |
BRANCH: ${{ github.ref_name }} | |
CONTEXT: "nightly" | |
jobs: | |
api-gateway-conformance: | |
name: api-gateway-conformance | |
runs-on: ubuntu-latest | |
steps: | |
- uses: benc-uk/workflow-dispatch@25b02cc069be46d637e8fe2f1e8484008e9e9609 # v1.2.3 | |
name: conformance | |
with: | |
workflow: api-gateway-conformance.yml | |
repo: hashicorp/consul-k8s-workflows | |
ref: main | |
token: ${{ secrets.ELEVATED_GITHUB_TOKEN }} | |
inputs: '{ "context":"${{ env.CONTEXT }}", "repository":"${{ github.repository }}", "branch":"${{ env.BRANCH }}", "sha":"${{ github.sha }}", "token":"${{ secrets.ELEVATED_GITHUB_TOKEN }}" }' |