diff --git a/.github/workflows/validate-revision.yml b/.github/workflows/validate-revision.yml new file mode 100644 index 00000000000..526f88b1b4e --- /dev/null +++ b/.github/workflows/validate-revision.yml @@ -0,0 +1,20 @@ +name: Validate Revision + +on: + workflow_dispatch: + inputs: + allow-newer: + description: allow-newer line + required: true + type: string + constraints: + description: constraints line + required: true + type: string +env: + ALLOWNEWER: ${{ github.event.inputs.allow-newer }} + CONSTRAINTS: ${{ github.event.inputs.constraints }} + +jobs: + validate-main: + uses: ./.github/workflows/validate.yml diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5a30dfed233..247978a9289 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -30,6 +30,7 @@ on: release: types: - created + workflow_call: env: # We choose a stable ghc version across all os's