Skip to content

Commit

Permalink
.github/workflows/actions.yaml: Run CI on pull requests too
Browse files Browse the repository at this point in the history
Not just on pushes
  • Loading branch information
sevan authored and dancrossnyc committed Jan 10, 2024
1 parent b5e415d commit be7c68f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: GitHub Actions Build
run-name: ${{ github.actor }} triggered a build
on: [push]
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
Build-on-Ubuntu:
runs-on: [ubuntu-latest]
Expand Down

0 comments on commit be7c68f

Please sign in to comment.