Skip to content

Commit

Permalink
feat(ci/hax): allow manual workflows to specify hax version
Browse files Browse the repository at this point in the history
This PR adds a `hax_rev` input for the workflow dispatch argument of
the hax ci job.
  • Loading branch information
W95Psp committed Nov 28, 2024
1 parent d5e4a0f commit de946d7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/hax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- cron: "0 0 * * *"

workflow_dispatch:
inputs:
hax_rev:
description: 'The hax revision you want this job to use'
default: 'main'
merge_group:

env:
Expand Down Expand Up @@ -42,6 +46,7 @@ jobs:
uses: actions/checkout@v4
with:
repository: hacspec/hax
ref: ${{ github.event.inputs.hax_rev || 'main' }}
path: hax

- name: ⤵ Install & confiure Cachix
Expand Down

0 comments on commit de946d7

Please sign in to comment.