Skip to content

Commit d844150

Browse files
committed
add workflows
1 parent c669505 commit d844150

4 files changed

Lines changed: 35 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release on demand
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
releaseVersion:
7+
description: "Version to release"
8+
required: true
9+
snapshotVersion:
10+
description: "Snapshot version after release"
11+
required: true
12+
13+
jobs:
14+
call-release:
15+
uses: clojure/build.ci/.github/workflows/release.yml@master
16+
with:
17+
releaseVersion: ${{ github.event.inputs.releaseVersion }}
18+
snapshotVersion: ${{ github.event.inputs.snapshotVersion }}
19+
secrets: inherit

.github/workflows/snapshot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Snapshot on demand
2+
3+
on: [workflow_dispatch]
4+
5+
jobs:
6+
call-snapshot:
7+
uses: clojure/build.ci/.github/workflows/snapshot.yml@master
8+
secrets: inherit

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
call-test:
7+
uses: clojure/build.ci/.github/workflows/test.yml@master

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ org.clojure/tools.deps.graph {:mvn/version "1.1.76"}
109109
* [GitHub project](https://github.com/clojure/tools.deps.graph)
110110
* [How to contribute](https://clojure.org/community/contributing)
111111
* [Bug Tracker](https://dev.clojure.org/jira/browse/TDEPS)
112-
* [Continuous Integration](https://build.clojure.org/job/tools.deps.graph/)
113-
* [Compatibility Test Matrix](https://build.clojure.org/job/tools.deps.graph-test-matrix/)
112+
* [Continuous Integration](https://github.com/clojure/tools.deps.graph/actions/workflows/test.yml)
114113

115114
# Copyright and License
116115

0 commit comments

Comments
 (0)