Skip to content

Commit

Permalink
Update tokens, add workflow dispatch triggers (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
nnichols authored May 28, 2022
1 parent a5dd52f commit 55854f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Clojurescript CI
name: Clojure Tests

on: ["push", "workflow_dispatch"]

Expand All @@ -17,9 +17,9 @@ jobs:
cache-name: cache-maven
with:
path: ~/.m2
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }}
key: ${{ runner.os }}-${{ env.cache-name }}-clj-${{ hashFiles('**/project.clj') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }}
${{ runner.os }}-${{ env.cache-name }}-clj-${{ hashFiles('**/project.clj') }}
- name: Cache npm dependencies
uses: actions/cache@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Clojure Dependency Update
on:
schedule:
- cron: '0 15 * * *'
workflow_dispatch:

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Linter
on: [pull_request]
on: [pull_request, workflow_dispatch]

jobs:
spell-check:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 15 * * *"
workflow_dispatch:


jobs:
stale:
Expand Down

0 comments on commit 55854f4

Please sign in to comment.