Skip to content

Commit

Permalink
Update makefile.yml to run on pushes to main branch only
Browse files Browse the repository at this point in the history
  • Loading branch information
shigoel authored Feb 9, 2024
1 parent c3a701b commit 0d984de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ on:
# 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 pushes to the main branch only:
push:
branches: [ "main" ]
# Run on every pull request:
pull_request: {}

Expand Down

0 comments on commit 0d984de

Please sign in to comment.