From 0bcd2ceaf4711f3e4c1e029625c5bdc4b5f85490 Mon Sep 17 00:00:00 2001 From: Alex Tim <buildmnt@gmail.com> Date: Wed, 20 Jul 2022 14:35:36 +0300 Subject: [PATCH] build: changeset --- .changeset/eighty-bobcats-reply.md | 5 +++++ .github/workflows/codeql-analysis.yaml | 4 ++++ .github/workflows/release.yaml | 5 ++++- .github/workflows/test.yaml | 2 ++ 4 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .changeset/eighty-bobcats-reply.md diff --git a/.changeset/eighty-bobcats-reply.md b/.changeset/eighty-bobcats-reply.md new file mode 100644 index 0000000..58e76cb --- /dev/null +++ b/.changeset/eighty-bobcats-reply.md @@ -0,0 +1,5 @@ +--- +"astro-webmanifest": patch +--- + +refactor: schema diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml index 571673a..b968b69 100644 --- a/.github/workflows/codeql-analysis.yaml +++ b/.github/workflows/codeql-analysis.yaml @@ -19,9 +19,11 @@ on: - '**.js' - '!.changeset/**' - '!.github/**' + - '!.husky/**' - '!.vscode/**' - '!**/*.md' - '!examples/**' + - '!**/LICENSE' pull_request: # The branches below must be a subset of the branches above branches: [main] @@ -30,9 +32,11 @@ on: - '**.js' - '!.changeset/**' - '!.github/**' + - '!.husky/**' - '!.vscode/**' - '!**/*.md' - '!examples/**' + - '!**/LICENSE' schedule: - cron: '18 21 * * 2' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f4517b6..5ff916b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,8 +10,11 @@ on: - 'packages/**' - '!examples/**' - '!.github/**' + - '!.husky/**' - '!.vscode/**' - - '!**/*.md' + - '!**/README.md' + - '!**/CHANGELOG.md' + - '!**/LICENSE' - '!packages/**/__tests__/**' # Automatically cancel in-progress actions on the same branch diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8cd3d07..f435694 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,6 +7,7 @@ on: paths-ignore: - '.changeset/**' - '.github/**' + - '.husky/**' - '.vscode/**' - '**/*.md' - 'examples/**' @@ -15,6 +16,7 @@ on: paths-ignore: - '.changeset/**' - '.github/**' + - '.husky/**' - '.vscode/**' - '**/*.md' - 'examples/**'