Skip to content

feat: trigger action from cron #4

feat: trigger action from cron

feat: trigger action from cron #4

name: Third party libraries testing workflow

Check failure on line 1 in .github/workflows/third-party-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/third-party-tests.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
on:
workflow_dispatch:
inputs:
library:
type: choice
options:
- viem
- web3
- ethers
version:
type: string
default: 'latest'
description: Version to test again or 'latest'
workflow_run:
jobs:
third-party-test-workflow:
runs-on: ['self-hosted', 'org', '8-cpu']
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/third-party-tests/action.yaml
with:
library: ${{ github.event.inputs.library }}
version: ${{ github.event.inputs.version }}