We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 500da5f commit 6f63720Copy full SHA for 6f63720
.github/workflows/test.yml
@@ -1,6 +1,15 @@
1
name: CI
2
3
-on: [push, pull_request]
+# This `on:` configuration avoids double-triggered jobs (one for `push`, one for `pull_request`).
4
+# Pull requests will still get jobs on every commit.
5
+# However you won't get jobs on branch pushes that lack an associated pull requests.
6
+# On the other hand, CircleCI jobs will still be triggered, which give a useful form of feedback.
7
+# Lastly, remember that we have a Makefile for local development - you are encouraged to use it before pushing commits.
8
+on:
9
+ push:
10
+ branches:
11
+ - master
12
+ pull_request:
13
14
permissions:
15
contents: read # to fetch code (actions/checkout)
0 commit comments