2022-02-06 09:57:35 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# SPDX-FileCopyrightText: 2022 Carles Fernandez-Prades <carles.fernandez@cttc.es>
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- CITATION.cff
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- CITATION.cff
|
2022-11-27 15:32:19 +00:00
|
|
|
workflow_dispatch:
|
2022-02-06 09:57:35 +00:00
|
|
|
|
|
|
|
name: CITATION.cff
|
|
|
|
jobs:
|
|
|
|
Validate-CITATION-cff:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Validate CITATION.cff
|
|
|
|
env:
|
|
|
|
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-12-13 21:38:01 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-02-06 09:57:35 +00:00
|
|
|
- name: Validate CITATION.cff
|
|
|
|
uses: dieghernan/cff-validator@main
|
2022-11-27 15:32:19 +00:00
|
|
|
# Upload artifact in case of failure
|
|
|
|
- name: Update artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
2022-02-06 09:57:35 +00:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: citation-cff-errors
|
|
|
|
path: citation_cff_errors.md
|