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 41c66ac commit a762ee1Copy full SHA for a762ee1
.github/workflows/build.yml
@@ -1,5 +1,14 @@
1
name: "Build and Report Generation"
2
-on: [push, pull_request]
+on:
3
+ push:
4
+ pull_request:
5
+ branches:
6
+ # Branches from forks have the form 'user:branch-name' so we only run
7
+ # this job on pull_request events for branches that look like fork
8
+ # branches. Without this we would end up running this job twice for non
9
+ # forked PRs, once for the push and then once for opening the PR.
10
+ # Taken from https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662/10
11
+ - '**:**'
12
13
jobs:
14
test:
0 commit comments