From c5af52847b80836f4a94bcf73983324fea1b4435 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 3 May 2024 11:42:42 +1000 Subject: [PATCH] CI: Add docs and document start Add a document start and comment to help try to stop the readme from going stale. This removes a `yamllint` warning. While we are clearing lint warnings disable the one causing warning truthy value should be one of [false, true] (truthy) This is a know issue with GitHub actions yaml because `on` is a yaml keyword, or something like that. --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5855ddacb..5f0971d85 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,4 +1,5 @@ -on: +--- # rust-bitcoin CI: If you edit this file please update README.md +on: # yamllint disable-line rule:truthy push: branches: - master