We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9333d57 commit 2839742Copy full SHA for 2839742
1 file changed
.github/workflows/gradle.yml
@@ -9,7 +9,7 @@ name: Build & Tests
9
10
on:
11
push:
12
- branches: [ main, development ]
+ branches: [ main ]
13
pull_request:
14
branches: [ main, development ]
15
workflow_dispatch:
@@ -18,6 +18,8 @@ env:
18
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
19
20
jobs:
21
+ # avoid double CI runs on push and PR, from https://github.com/orgs/community/discussions/57827
22
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
23
build:
24
strategy:
25
matrix:
0 commit comments