From 842afac7ddc18648a30ac4d985df6409db5d9e1f Mon Sep 17 00:00:00 2001 From: Valentin Tolmer Date: Mon, 29 Nov 2021 09:38:51 +0100 Subject: [PATCH] workflows: Ignore changes to docs for actions --- .dockerignore | 5 +++++ .github/workflows/rust.yml | 2 +- architecture.md => docs/architecture.md | 0 3 files changed, 6 insertions(+), 1 deletion(-) rename architecture.md => docs/architecture.md (100%) diff --git a/.dockerignore b/.dockerignore index f2f90ab..ae30b96 100644 --- a/.dockerignore +++ b/.dockerignore @@ -16,6 +16,11 @@ app/pkg/* Dockerfile .dockerignore +# Don't track docs +README.md +LICENSE +docs/* + # Various config files that shouldn't be tracked lldap_config.toml server_key diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1a663e7..3ebd143 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,7 +23,7 @@ jobs: # All of these options are optional, so you can remove them if you are happy with the defaults concurrent_skipping: 'never' skip_after_successful_duplicate: 'true' - paths_ignore: '["**/README.md"]' + paths_ignore: '["**/README.md", "**/docs/**"]' do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' test: name: cargo test diff --git a/architecture.md b/docs/architecture.md similarity index 100% rename from architecture.md rename to docs/architecture.md