diff --git a/.github/actions/rust/action.yml b/.github/actions/rust/action.yml index 9b6d64acb..373f93cf0 100644 --- a/.github/actions/rust/action.yml +++ b/.github/actions/rust/action.yml @@ -1,3 +1,5 @@ +--- # Common CI steps + name: "Rust" description: | Common steps for CI diff --git a/.github/labeler.yml b/.github/labeler.yml index 65efe3416..04941664b 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,3 +1,5 @@ +--- # Github labeler configuration file + # Add 'crate: mpt_trie' label to any changes within 'mpt_trie' folder. 'crate: mpt_trie': - changed-files: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 8879df0de..9792f107b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,4 +1,4 @@ ---- # Add labels to the PR +--- # Add labels to the PR name: "Pull Request Labeler" on: diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 8a4639e54..0c9910d31 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -1,3 +1,5 @@ +--- # Run yamllint on all YAML files in the repository + name: Yamllint 'on': pull_request: @@ -20,5 +22,5 @@ jobs: run: > yamllint --format github - -d "{extends: default, rules: {line-length: {max: 120}}}" + -d "{extends: default, rules: {line-length: {max: 120}, truthy: {check-keys: false}}}" .github