mirror of
https://github.com/coder/coder.git
synced 2026-06-06 14:38:23 +00:00
29 lines
677 B
YAML
29 lines
677 B
YAML
name: release-validation
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
network-performance:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Run Schmoder CI
|
|
uses: benc-uk/workflow-dispatch@e2e5e9a103e331dad343f381a29e654aea3cf8fc # v1.2.4
|
|
with:
|
|
workflow: ci.yaml
|
|
repo: coder/schmoder
|
|
inputs: '{ "num_releases": "3", "commit": "${{ github.sha }}" }'
|
|
token: ${{ secrets.CDRCI_SCHMODER_ACTIONS_TOKEN }}
|
|
ref: main
|