-3

I am writing heavy e2e tests suite.

I want to run the whole e2e setup in ci.

But i want to be able to trigger this job from github UI when i want.

How this can be achieved?

1

1 Answer 1

1

You can use the workflow_dispatch trigger for a github action to manually trigger the workflow from the github ui.

on:
  workflow_dispatch

jobs:
  build-and-test:
    runs-on: ubuntu-latest
    steps:
    ...
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.