mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2026-02-04 11:29:22 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
610 B
YAML
30 lines
610 B
YAML
# SPDX-FileCopyrightText: 2023 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH, Darmstadt, Germany
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: Check AUTHORS and CONTRIBUTORS in metadata
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- AUTHORS
|
|
- CONTRIBUTORS
|
|
- codemeta.json
|
|
- .zenodo.json
|
|
pull_request:
|
|
paths:
|
|
- AUTHORS
|
|
- CONTRIBUTORS
|
|
- codemeta.json
|
|
- .zenodo.json
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Try updating metadata
|
|
run: python meta_update.py
|
|
- name: Check for Updates
|
|
run: git diff --exit-code
|