We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2c62a9 commit 94d0dd6Copy full SHA for 94d0dd6
.github/workflows/ci.yml
@@ -2,6 +2,8 @@ name: Build project
2
on: [ push, pull_request ]
3
jobs:
4
build:
5
+ # allow triggering on a push to the repo, or a PR build, not both events
6
+ if: github.event_name == 'push' || github.event.pull_request.head.sha != github.sha
7
name: Build
8
runs-on: ubuntu-latest
9
strategy:
0 commit comments