Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
######################## GNU General Public License 2.0 ########################
## ##
## Copyright (C) 2022 Kevin Matthes ##
## ##
## This program is free software; you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation; either version 2 of the License, or ##
## (at your option) any later version. ##
## ##
## This program is distributed in the hope that it will be useful, ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
## GNU General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License along ##
## with this program; if not, write to the Free Software Foundation, Inc., ##
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ##
## ##
################################################################################

################################################################################
##
## AUTHOR Kevin Matthes
## BRIEF The configuration of Dependabot.
## COPYRIGHT GPL-2.0
## DATE 2022
## FILE dependabot.yml
## NOTE See `LICENSE' for full license.
## See `README.md' for project details.
##
################################################################################

version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
time: '00:00'
assignees:
- kevinmatthes
commit-message:
prefix: Dependabot
include: scope
milestone: 1

################################################################################
58 changes: 58 additions & 0 deletions .github/workflows/cffconvert.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
######################## GNU General Public License 2.0 ########################
## ##
## Copyright (C) 2022 Kevin Matthes ##
## ##
## This program is free software; you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation; either version 2 of the License, or ##
## (at your option) any later version. ##
## ##
## This program is distributed in the hope that it will be useful, ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
## GNU General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License along ##
## with this program; if not, write to the Free Software Foundation, Inc., ##
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ##
## ##
################################################################################

################################################################################
##
## AUTHOR Kevin Matthes
## BRIEF The definition of a GitHub Action.
## COPYRIGHT GPL-2.0
## DATE 2022
## FILE cffconvert.yml
## NOTE See `LICENSE' for full license.
## See `README.md' for project details.
##
################################################################################

name: cffconvert

on:
push:
paths:
- CITATION.cff

permissions:
contents: read

jobs:
validation:
name: validate
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3.1.0
with:
persist-credentials: false

- name: cffconvert
uses: citation-file-format/cffconvert-github-action@2.0.0
with:
args: --validate

################################################################################
54 changes: 54 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
######################## GNU General Public License 2.0 ########################
## ##
## Copyright (C) 2022 Kevin Matthes ##
## ##
## This program is free software; you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation; either version 2 of the License, or ##
## (at your option) any later version. ##
## ##
## This program is distributed in the hope that it will be useful, ##
## but WITHOUT ANY WARRANTY; without even the implied warranty of ##
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ##
## GNU General Public License for more details. ##
## ##
## You should have received a copy of the GNU General Public License along ##
## with this program; if not, write to the Free Software Foundation, Inc., ##
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ##
## ##
################################################################################

################################################################################
##
## AUTHOR Kevin Matthes
## BRIEF Citation settings for the Git repository.
## COPYRIGHT GPL-2.0
## DATE 2022
## FILE CITATION.cff
## NOTE See `LICENSE' for full license.
## See `README.md' for project details.
##
################################################################################

# Parser settings.
cff-version: 1.2.0
message: Please cite this library using these meta data.

# Version information.
date-released: 2022-11-06
version: 0.0.0

# Project information.
abstract: >-
A Fortran 2018 library for conditional (de-)allocation of allocatable objects
of intrinsic types.
authors:
- alias: kevinmatthes
family-names: Matthes
given-names: Kevin
license: GPL-2.0
repository-code: https://github.com/kevinmatthes/fortran2018-conditional-memory
title: fortran2018-conditional-memory
url: https://github.com/kevinmatthes/fortran2018-conditional-memory

################################################################################
8 changes: 8 additions & 0 deletions changelog.d/feature:cff.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Added
.....

- create CITATION.cff

- Dependabot: GitHub Action setup

- GitHub Action: CFF validation