mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
f8844cab0a
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Muhammad Atif Ali <atif@coder.com>
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@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
|
|
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
|