Skip to content

Commit

Permalink
Updated CI workflow triggers
Browse files Browse the repository at this point in the history
- added `workflow_dispatch` so we can trigger manually
- added `pull_request` so we get CI on PRs
- configured `push` to only run on `main`
- this prevents random (non-PR) branches from being tested, but that's
  good because it reduces noise
  • Loading branch information
daniellockyer committed Nov 13, 2024
1 parent aa34029 commit 4273f98
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: CI

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
lint:
Expand Down

0 comments on commit 4273f98

Please sign in to comment.