Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/certora-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Certora API

on:
workflow_dispatch:
inputs:
command:
required: true
description: |
The Certora API command to execute. Options are:
- `cancel <group_id>`: Cancel all jobs in the specified group.
- `refresh <group_id>`: Refresh the status of all jobs in the specified group.

permissions:
contents: read
id-token: write

jobs:
certora-api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: Certora/certora-run-action/api@main
with:
certora-command: ${{ github.event.inputs.command }}
server: production
Loading