Read more

GitHub Actions: Manually running a workflow

Henning Koch
June 24, 2021Software engineer at makandra GmbH

To start a workflow manually it must have a trigger called workflow_dispatch:

---
name: Tests
on:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master
  workflow_dispatch:
    branches:
    - master  
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

In the Actions tab of your repo you can now select a workflow and press "Run Workflow".

See GitHub documentation for details Show archive.org snapshot .

Posted by Henning Koch to makandra dev (2021-06-24 13:48)