Skip to content

Commit bb3a7eb

Browse files
authored
Add default action name
Add default action name
1 parent 7901970 commit bb3a7eb

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ The quality gate and measurement results are reported in your action summary and
4343
Below is an example of the minimum configuration that needs to be created in the workflow to enable TICS Client analysis:
4444

4545
```yaml
46+
name: TICS Github Action
4647
on: [pull_request]
4748

4849
jobs:
@@ -52,7 +53,7 @@ jobs:
5253
- uses: actions/checkout@v4
5354
with:
5455
fetch-depth: 0
55-
- name: TICS GitHub Action
56+
- name: TICS Analysis
5657
uses: tiobe/tics-github-action@v3
5758
with:
5859
viewerUrl: https://domain.com/tiobeweb/TICS/api/cfg?name=config
@@ -108,6 +109,7 @@ With TICSQServer, persistent measurement points are created which are stored in
108109
TICSQServer can also compare the last obtained results with the previous run and apply Quality Gating.
109110

110111
```yaml
112+
name: TICS Github Action
111113
on:
112114
push:
113115
branches:
@@ -120,7 +122,7 @@ jobs:
120122
- uses: actions/checkout@v4
121123
with:
122124
fetch-depth: 0
123-
- name: TICS GitHub Action
125+
- name: TICSQserver Analysis
124126
uses: tiobe/tics-github-action@v3
125127
with:
126128
mode: qserver
@@ -200,6 +202,7 @@ Below, parameters are described to control infra structure and security related
200202
There is also the possibility to do a so called "diagnostic" run. This mode can be enabled to test if TICS has been set up properly and can run on the machine the action is run on.
201203

202204
```yaml
205+
name: TICS Github Action
203206
on: workflow_dispatch
204207
205208
jobs:
@@ -209,7 +212,7 @@ jobs:
209212
- uses: actions/checkout@v4
210213
with:
211214
fetch-depth: 0
212-
- name: TICS GitHub Action
215+
- name: TICS Diagnostics
213216
uses: tiobe/tics-github-action@v3
214217
with:
215218
mode: diagnostic
@@ -264,6 +267,7 @@ To control the location where TICS is installed, `TICSINSTALLDIR` can be used.
264267
Example:
265268

266269
```yaml
270+
name: TICS Github Action
267271
on: workflow_dispatch
268272
269273
jobs:
@@ -273,7 +277,7 @@ jobs:
273277
- uses: actions/checkout@v4
274278
with:
275279
fetch-depth: 0
276-
- name: TICS GitHub Action
280+
- name: TICS Analysis
277281
uses: tiobe/tics-github-action@v3
278282
env:
279283
TICSINSTALLDIR: /tmp/tics/wrapper

0 commit comments

Comments
 (0)