Skip to content

Commit 4e56199

Browse files
Merge pull request #12610 from nextcloud/backport/12609/stable31
[stable31] ci: Fix spelling action to ignore SVGs
2 parents 5412d5a + 673586b commit 4e56199

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/codespell.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ jobs:
1212
runs-on: self-hosted
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
with:
17+
persist-credentials: false
18+
1619
- name: Check spelling
17-
uses: codespell-project/actions-codespell@v2
20+
uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
21+
with:
22+
skip: '**.svg'

developer_manual/client_apis/OCS/ocs-openapi.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ You are required to add a description for every status code returned by the meth
606606
How to add response definitions to share type definitions
607607
---------------------------------------------------------
608608

609-
In the previous steps we have been re-using the same data structure multiple times, but it was copied every time.
609+
In the previous steps we have been reusing the same data structure multiple times, but it was copied every time.
610610
This is tedious and error prone, therefore we want to create some shared type definitions.
611611
Create a new file called ``ResponseDefinitions.php`` in the ``lib`` folder of your app.
612612
It will only work with that file name at that location.

developer_manual/getting_started/coding_standards/javascript.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ JavaScript and Typescript
55
.. contents::
66
:local:
77

8-
General rules and advices
9-
-------------------------
8+
General rules and advice
9+
------------------------
1010

1111
- Nextcloud uses Vue.js for its interface, for a consistent user interface we recommend apps to also use Vue with :ref:`provided components <js-library_nextcloud-vue>`.
1212
Yet also vanilla JavaScript and HTML can be used.

0 commit comments

Comments
 (0)