From cac3a287609a548fe4c788be70ff6d7d5844ed08 Mon Sep 17 00:00:00 2001 From: Wes Bonelli Date: Fri, 13 Oct 2023 09:19:03 -0400 Subject: [PATCH 1/2] docs(readme): add repo status and latest tag badges --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c92a71..7bed1d2 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,16 @@ # Setup Fortran [![Test](https://github.com/awvwgk/setup-fortran/actions/workflows/test.yml/badge.svg)](https://github.com/awvwgk/setup-fortran/actions/workflows/test.yml) +[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) +[![GitHub tag](https://img.shields.io/github/tag/fortran-lang/setup-fortran.svg)](https://github.com/fortran-lang/setup-fortran/tags/latest) + Action to setup a Fortran compiler. + - [Usage](#usage) - [Options](#options) - [Outputs](#outputs) @@ -58,7 +62,7 @@ jobs: - *gcc* (for `gfortran`) - *intel* (for `ifx`) - *intel-classic* (for `ifort`) -- *version*: Version of the compiler toolchain. See [runner compatibility](#runner-compatibility) chart below. +- *version*: Version of the compiler toolchain. See [runner compatibility](#runner-compatibility) charts below. From 38de051c415d7063311bf0648e9dbb4596e26a83 Mon Sep 17 00:00:00 2001 From: Wes Bonelli Date: Fri, 13 Oct 2023 09:22:33 -0400 Subject: [PATCH 2/2] ci: don't test if only markdown files changed --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6249fad..0400e38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,10 +5,14 @@ on: branches: - main - develop* + paths-ignore: + - '**.md' pull_request: branches: - main - develop* + paths-ignore: + - '**.md' schedule: - cron: '0 6 * * *'