Skip to content

Commit

Permalink
Updated CI to use master branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Dec 14, 2024
1 parent 68a2f17 commit b7bd972
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"on": {
"push": {
"branches": [
"clos-everywhere"
"master"
]
},
"pull_request": null,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"on": {
"push": {
"branches": [
"clos-everywhere"
"master"
]
},
"pull_request": null,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"on": {
"push": {
"branches": [
"clos-everywhere"
"master"
]
},
"pull_request": null,
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.*.~undo-tree~
.DS_Store
*.fasl
.env
6 changes: 3 additions & 3 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


(defworkflow linter
:on-push-to "clos-everywhere"
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:cache t
Expand All @@ -21,15 +21,15 @@
"cl-telegram-bot-tests"))))

(defworkflow docs
:on-push-to "clos-everywhere"
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:cache t
:jobs ((build-docs :asdf-system "cl-telegram-bot-docs")))


(defworkflow ci
:on-push-to "clos-everywhere"
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:cache t
Expand Down

0 comments on commit b7bd972

Please sign in to comment.