Skip to content

Commit 4317d3a

Browse files
committed
fix: publiccode.yml validation errors
Add a GitHub Actions workflow to catch future ones.
1 parent 8d1049e commit 4317d3a

2 files changed

Lines changed: 30 additions & 4 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Validate publiccode.yml
2+
3+
on:
4+
push:
5+
paths:
6+
- "publiccode.yml"
7+
- ".github/workflows/publiccodeyml-check.yml"
8+
pull_request:
9+
paths:
10+
- "publiccode.yml"
11+
- ".github/workflows/publiccodeyml-check.yml"
12+
13+
permissions: {}
14+
15+
jobs:
16+
validate:
17+
runs-on: ubuntu-latest
18+
permissions:
19+
contents: read
20+
name: publiccode.yml validation
21+
steps:
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
23+
24+
- uses: italia/publiccode-parser-action@56e1200cba853b1efa73ee871600284d0705ab4d # v1
25+
with:
26+
publiccode: "publiccode.yml"
27+
no-network: true
28+

publiccode.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This repository adheres to the publiccode.yml standard by including this
22
# metadata file that makes public software easily discoverable.
3-
# More info at https://github.com/italia/publiccode.yml
3+
# More info at https://github.com/publiccodeyml/publiccode.yml
44

5-
publiccodeYmlVersion: '0.2'
5+
publiccodeYmlVersion: '0'
66
name: FastReport
77
releaseDate: '2021-09-06'
88
url: 'https://github.com/FastReports/FastReport.git'
@@ -124,7 +124,6 @@ description:
124124
- >-
125125
Export in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. PDF Export is available
126126
as a plugin.
127-
genericName: Generatore di report
128127
129128
en:
130129
shortDescription: FastReport provides open source report generator for .NET Core/.NET Framework. You can use the FastReport in MVC, Web API applications.
@@ -171,4 +170,3 @@ description:
171170
- >-
172171
Export in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. PDF Export is available
173172
as a plugin.
174-
genericName: Report generator

0 commit comments

Comments
 (0)