Skip to content

Commit 1f22a3d

Browse files
authored
Merge pull request #46 from juanjemdIos/main
small typo bug in de script mapping a property with a blank space.
2 parents 6e89848 + 4e4bc1f commit 1f22a3d

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,11 @@ There are two key workflows:
159159
- **`call-rsfc.yml`**:
160160
A workflow file that triggers `run-rsfc.yml`.
161161
It must be placed in each repository that you want to analyze, since the repository where `call-rsfc.yml` is hosted is the one that will be processed.
162-
No additional inputs are required because the repository context is automatically passed by the `call`.
162+
No additional inputs are required because the repository context is automatically passed by the `call`.
163163
This workflow can be triggered manually (`workflow_dispatch`) or automatically (e.g., on `push` events).
164+
- **Secrets**:
165+
- `RSFC_TOKEN` is optional but recommended if you plan to run multiple analyses or expect heavy usage. It allows RSFC to access private repositories and avoid rate limits.
166+
164167

165168
## Usage
166169

@@ -185,4 +188,4 @@ jobs:
185188
with:
186189
repo_url: https://github.com/${{ github.repository }}
187190
secrets:
188-
GITHUB_TOKEN: ${{ secrets.RSFC_TOKEN }}
191+
RSFC_TOKEN: ${{ secrets.RSFC_TOKEN }}

doc/benchmark/FAIR4RS/FAIR4RS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1 class="miClase text-center">FAIR4RS Benchmark </h1>
7777
<div class="row flex-space-between">
7878
<div class="col-md-12 align-items-center">
7979
<h4 class="miClase text-left text-separation">BENCHMARK INFORMATION</h4>
80-
<a href="FAIR4RS .ttl" title="RDF Resource Description
80+
<a href="FAIR4RS.ttl" title="RDF Resource Description
8181
Framework"> <img border="0" src="http://www.w3.org/RDF/icons/rdf_flyer.24"
8282
alt="RDF Resource Description Framework Flyer Icon"/></a>
8383
</div>

doc/web_generation_scripts/ttl_transformations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ def ttl_to_html_benchmarks(path_ttl, path_mustache, pquery):
552552
data['benchmark_license'] = row.license
553553
# data['benchmark_landing_page'] = row.landing_page
554554
data['benchmark_status'] = row.benchmark_status
555-
data['benchmark_turtle'] = row.label.replace('Benchmark ', '') + '.ttl'
555+
data['benchmark_turtle'] = row.label.replace('Benchmark ', '').strip() + '.ttl'
556556
data['benchmark_same_as'] = row.same_as
557557

558558
if str(row.keywords) not in keywords:

0 commit comments

Comments
 (0)