From 890bb791f43f99d35c60b3d85885d3d2b9e0a398 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Mon, 13 May 2024 11:56:50 -0700 Subject: [PATCH 1/2] Run actions on PRs as well. --- .github/workflows/publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1c2b474..94c2943 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,7 +1,4 @@ -on: - push: - branches: - - main +on: [push, pull_request] name: Render and Publish From bfaeca87145c6aff9f57118c90acb180ebf75fcf Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Mon, 13 May 2024 13:23:19 -0700 Subject: [PATCH 2/2] Ignore bibliography. Improve yaml. --- .codespellrc | 4 ++++ .github/workflows/publish.yml | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 0000000..e5da532 --- /dev/null +++ b/.codespellrc @@ -0,0 +1,4 @@ +[codespell] +skip = references.bib +count = +quiet-level = 3 \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 94c2943..1e58f3e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,10 @@ -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main name: Render and Publish