summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYaroslav Halchenko <debian@onerussian.com>2023-03-29 14:47:13 -0400
committerGitHub <noreply@github.com>2023-03-29 19:47:13 +0100
commit0f8cb2888311868be83c208fef26d2139af41712 (patch)
tree9327f7ae13fc2c6907e8eb21051e94bf0ebeab21 /.github
parented9be128370c93b93895bb1bb61cc1e606277613 (diff)
downloadfuse-0f8cb2888311868be83c208fef26d2139af41712.tar.gz
Fix typos and configure spellcheck for PRs
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/issue-report.md2
-rw-r--r--.github/workflows/codespell.yml19
2 files changed, 20 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/issue-report.md b/.github/ISSUE_TEMPLATE/issue-report.md
index 277537e..492ce0a 100644
--- a/.github/ISSUE_TEMPLATE/issue-report.md
+++ b/.github/ISSUE_TEMPLATE/issue-report.md
@@ -11,6 +11,6 @@ PLEASE READ BEFORE REPORTING AN ISSUE
libfuse does not have any active, regular contributors or developers. The current maintainer continues to apply pull requests and tries to make regular releases, but unfortunately has no capacity to do any development beyond addressing high-impact issues. When reporting bugs, please understand that unless you are including a pull request or are reporting a critical issue, you will probably not get a response.
-To prevent the issue tracker from being flooded with issues that no-one is intending to work on, and to give more visibilty to critical issues that users should be aware of and that most urgently need attention, I will also close most bug reports once they've been inactive for a while.
+To prevent the issue tracker from being flooded with issues that no-one is intending to work on, and to give more visibility to critical issues that users should be aware of and that most urgently need attention, I will also close most bug reports once they've been inactive for a while.
Please note that this isn't meant to imply that you haven't found a bug - you most likely have and I'm grateful that you took the time to report it. Unfortunately, libfuse is a purely volunteer driven project, and at the moment there simply aren't any volunteers.
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 0000000..5768d7c
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,19 @@
+---
+name: Codespell
+
+on:
+ push:
+ branches: [master]
+ pull_request:
+ branches: [master]
+
+jobs:
+ codespell:
+ name: Check for spelling errors
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Codespell
+ uses: codespell-project/actions-codespell@v1