diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 8883e248b..df112327d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -4,6 +4,9 @@ on: issue_comment: types: [created] workflow_dispatch: + push: + branches: + - benchmark permissions: contents: read @@ -29,6 +32,12 @@ jobs: echo "name=${{ github.ref_name }}" | tee -a "$GITHUB_OUTPUT" fi + foo: + needs: [prepare] + runs-on: ubuntu-latest + steps: + - run: echo "Hello, world!" + # run benchmark benchmark: needs: [prepare]