Skip to content

Commit

Permalink
Add workflow_dispatch to makefile.yml
Browse files Browse the repository at this point in the history
This should enable the use of manual triggers from GitHub UI.
  • Loading branch information
shigoel authored Feb 9, 2024
1 parent 88b16da commit c3a701b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Makefile CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Run using manual triggers from GitHub UI:
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
workflow_dispatch: {}
# Run on pushes:
push: {}
# Run on every pull request:
pull_request: {}

jobs:
build:
Expand Down

0 comments on commit c3a701b

Please sign in to comment.