mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
edd5d83280
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Lukasz <CommanderK5@users.noreply.github.com> Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.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@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Run Schmoder CI
|
|
uses: benc-uk/workflow-dispatch@7a027648b88c2413826b6ddd6c76114894dc5ec4 # v1.3.1
|
|
with:
|
|
workflow: ci.yaml
|
|
repo: coder/schmoder
|
|
inputs: '{ "num_releases": "3", "commit": "${{ github.sha }}" }'
|
|
token: ${{ secrets.CDRCI_SCHMODER_ACTIONS_TOKEN }}
|
|
ref: main
|