Skip to content

Commit 0de7cb0

Browse files
committed
ci and readme upgrade
1 parent 2af309c commit 0de7cb0

File tree

6 files changed

+1930
-6
lines changed

6 files changed

+1930
-6
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
concurrency:
88
cancel-in-progress: true
9-
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
9+
group: check-${{ github.workflow }}-${{ github.head_ref || github.ref }}
1010

1111
env:
1212
GRADLE_OPTS: "-Dorg.gradle.daemon=true"

.github/workflows/pr.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
env:
99
GRADLE_OPTS: "-Dorg.gradle.daemon=true"
1010

11+
concurrency:
12+
cancel-in-progress: true
13+
group: pr-${{ github.workflow }}-${{ github.head_ref || github.ref }}
14+
1115
jobs:
1216
check:
1317
uses: ./.github/workflows/check.yml

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Release
22

33
on:
44
push:
5-
paths-ignore:
6-
- website/**
5+
paths-ignore:
6+
- 'website/**'
7+
- '**/*.md'
78
branches:
89
- master
910
workflow_dispatch:
@@ -29,6 +30,10 @@ on:
2930
env:
3031
GRADLE_OPTS: "-Dorg.gradle.daemon=true"
3132

33+
concurrency:
34+
cancel-in-progress: false
35+
group: release-${{ github.workflow }}-${{ github.head_ref || github.ref }}
36+
3237
jobs:
3338
check:
3439
uses: ./.github/workflows/check.yml

.github/workflows/resolve-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
concurrency:
1717
cancel-in-progress: true
18-
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
18+
group: version-${{ github.workflow }}-${{ github.head_ref || github.ref }}
1919

2020
jobs:
2121
resolve:

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# [Redux-Kotlin](https://reduxkotlin.org)
22

3-
![CI](https://github.com/reduxkotlin/redux-kotlin/workflows/PR/badge.svg)
4-
3+
[![Release](https://github.com/reduxkotlin/redux-kotlin/actions/workflows/release.yml/badge.svg)](https://github.com/reduxkotlin/redux-kotlin/actions/workflows/release.yml)
54
![badge][badge-android]
65
![badge][badge-ios]
76
![badge][badge-native]
@@ -10,6 +9,10 @@
109
![badge][badge-linux]
1110
![badge][badge-windows]
1211
![badge][badge-mac]
12+
[![Slack chat](https://img.shields.io/badge/kotlinlang-%23redux-green?logo=slack&style=flat-square)](https://kotlinlang.slack.com/archives/C8A8G5F9Q)
13+
[![Dokka docs](https://img.shields.io/badge/docs-dokka-orange?style=flat-square&logo=kotlin)](http://reduxkotlin.github.io/redux-kotlin)
14+
[![Version maven-central](https://img.shields.io/maven-central/v/org.reduxkotlin/redux-kotlin?logo=apache-maven&style=flat-square)](https://mvnrepository.com/artifact/org.reduxkotlin/redux-kotlin/latest)
15+
[![Version maven-snapshot](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Foss.sonatype.org%2Fcontent%2Frepositories%2Fsnapshots%2Forg%2Freduxkotlin%2Fredux-kotlin%2Fmaven-metadata.xml&logo=apache-maven&label=maven-snapshot&style=flat-square)](https://oss.sonatype.org/content/repositories/snapshots/org/reduxkotlin/redux-kotlin/)
1316

1417
A redux standard for Kotlin that supports multiplatform projects.
1518

0 commit comments

Comments
 (0)