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 7fe147e commit 744c1a9Copy full SHA for 744c1a9
.github/settings.yml
@@ -5,7 +5,6 @@ repository:
5
name: js-toxcore-c
6
description: Node bindings for toxcore
7
topics: toxcore, javascript
8
- has_issues: true
9
10
branches:
11
- name: "master"
.travis.yml
@@ -42,3 +42,7 @@ script:
42
- npm run test
43
- npm run report-coverage
44
- if [ "$CHECK_FORMAT" = true ]; then npm run format && git diff --exit-code; fi
45
+
46
+# Only build pull requests and releases, don't build master on pushes,
47
+# except through api or cron.
48
+if: type IN (pull_request, api, cron) OR tag IS present
0 commit comments