diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60298e0..19ed788 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,6 @@ on: - '!.editorconfig' - '!docs/**' - '!**/*.md' - - '!.github/*' jobs: android-build: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0635433..a16ce66 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -25,7 +25,6 @@ on: - '!.editorconfig' - '!docs/**' - '!**/*.md' - - '!.github/*' jobs: android-build: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55dd1c1..e278b36 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,7 +23,6 @@ trigger: - .editorconfig - docs/** - **/*.md - - .github/* stages: - stage: build displayName: 'Build' diff --git a/build/CI.cs b/build/CI.cs index 0cbda77..4a925f6 100644 --- a/build/CI.cs +++ b/build/CI.cs @@ -6,7 +6,7 @@ public class CI : CIBuild public override PushTrigger OnPush => new () { Branches = new [] { "master" }, - ExcludePaths = new[] { ".gitignore", ".editorconfig", "docs/**", "**/*.md", ".github/*" } + ExcludePaths = new[] { ".gitignore", ".editorconfig", "docs/**", "**/*.md" } }; public override IEnumerable Stages => new[] diff --git a/build/PR.cs b/build/PR.cs index 7ead9e1..964b01f 100644 --- a/build/PR.cs +++ b/build/PR.cs @@ -6,7 +6,7 @@ public class PR : CIBuild public override PullRequestTrigger OnPull => new() { Branches = new[] { "master" }, - ExcludePaths = new[] { ".gitignore", ".editorconfig", "docs/**", "**/*.md", ".github/*" } + ExcludePaths = new[] { ".gitignore", ".editorconfig", "docs/**", "**/*.md" } }; public override IEnumerable Stages => new[]