/
githubmirror
/
etcd
Обзор
Документация
Войти
/
githubmirror
/
etcd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/antithesis.debugger.yml
44 строки
1 KB
dependabot[bot]
build(deps): bump antithesishq/antithesis-trigger-action
22 июн 2026, 20:45
Не верифицирован
22 июн 2026, 20:45
6cab07c
Код
Авторство
О чём код?
--- name: Trigger Antithesis debugger on: workflow_dispatch: inputs: session_id: description: "The session_id of a test. Found at the bottom of a report." required: true type: string input_hash: description: "The input hash of a moment." required: true type: string vtime: description: "The vtime of a moment." required: true type: string email: description: 'Email notification recipient(s) (separate with ;)' required: false type: string # Declare default permissions as read only. permissions: read-all jobs: trigger-debugger: runs-on: ubuntu-latest environment: Antithesis steps: - name: Trigger Antithesis Debugger uses: antithesishq/antithesis-trigger-action@80a5e9be591d303bf3c83e3ecbdc00102ad9de90 # v0.12 with: notebook_name: debugging tenant: linuxfoundation username: ${{ secrets.ANTITHESIS_WEBHOOK_USERNAME }} password: ${{ secrets.ANTITHESIS_WEBHOOK_PASSWORD }} github_token: ${{ secrets.GH_PAT }} email_recipients: ${{ inputs.email || 'siarkowicz@google.com' }} additional_parameters: |- antithesis.debugging.session_id = ${{ inputs.session_id }} antithesis.debugging.input_hash = ${{ inputs.input_hash }} antithesis.debugging.vtime = ${{ inputs.vtime }}