We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent febd787 commit 51ea850Copy full SHA for 51ea850
.circleci/config.yml
@@ -32,6 +32,8 @@ jobs:
32
- install
33
- run: mkdocs build
34
- add_ssh_keys:
35
+ # tell CI to use openworm-bot@github's ssh key (for deploy permissions)
36
+ # https://circleci.com/docs/2.0/add-ssh-key/
37
fingerprints:
38
- "ad:f1:51:b7:68:cb:19:08:b2:7d:63:e3:eb:79:1a:63"
39
- deploy:
@@ -49,12 +51,11 @@ workflows:
49
51
- mkdocs:
50
52
filters:
53
branches:
- ignore: /^gh-pages/
54
+ ignore: /^gh-pages/ # no tests exist on deployed pages branch
55
poll:
56
triggers:
57
- schedule:
- # every hour
- cron: "0 * * * *"
58
+ cron: "0 * * * *" # every hour
59
60
61
only:
0 commit comments