Skip to content

Commit ebf9c4b

Browse files
authored
Merge pull request #122 from diffblue/roxspring/action-description-length
action.yml descriptions must be <125 characters long
2 parents 1805391 + 3b4dc93 commit ebf9c4b

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/Build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v4
1717

18+
- name: Check - Description Length
19+
uses: mikefarah/yq@master
20+
with:
21+
cmd: yq eval --exit-status '.description | length < 125' action.yml
22+
1823
- name: Build
1924
run: |
2025
# Rebuild per-JDK actions based on the base content

action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Diffblue Cover
22
description:
3-
Runs Diffblue Cover to automatically write and maintain Java unit tests.
4-
Variations of the action are available using various supported JDK versions.
5-
This variation uses JDK17.
3+
Runs Diffblue Cover directly in your workflow to autonomously write
4+
Java unit tests on your pull requests.
65
author: Diffblue
76
branding:
87
icon: check-circle

jdk11/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Diffblue Cover
22
description:
3-
Runs Diffblue Cover to automatically write and maintain Java unit tests.
4-
Variations of the action are available using various supported JDK versions.
5-
This variation uses JDK11.
3+
Runs Diffblue Cover directly in your workflow to autonomously write
4+
Java unit tests on your pull requests.
65
author: Diffblue
76
branding:
87
icon: check-circle

jdk17/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Diffblue Cover
22
description:
3-
Runs Diffblue Cover to automatically write and maintain Java unit tests.
4-
Variations of the action are available using various supported JDK versions.
5-
This variation uses JDK17.
3+
Runs Diffblue Cover directly in your workflow to autonomously write
4+
Java unit tests on your pull requests.
65
author: Diffblue
76
branding:
87
icon: check-circle

jdk21/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Diffblue Cover
22
description:
3-
Runs Diffblue Cover to automatically write and maintain Java unit tests.
4-
Variations of the action are available using various supported JDK versions.
5-
This variation uses JDK21.
3+
Runs Diffblue Cover directly in your workflow to autonomously write
4+
Java unit tests on your pull requests.
65
author: Diffblue
76
branding:
87
icon: check-circle

jdk8/action.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: Diffblue Cover
22
description:
3-
Runs Diffblue Cover to automatically write and maintain Java unit tests.
4-
Variations of the action are available using various supported JDK versions.
5-
This variation uses JDK8.
3+
Runs Diffblue Cover directly in your workflow to autonomously write
4+
Java unit tests on your pull requests.
65
author: Diffblue
76
branding:
87
icon: check-circle

0 commit comments

Comments
 (0)