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  
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 11:48)