Added runners to forgejo, fixed vale workflow, added spelling workflow, changed over to ForgeJo
language for actions.
This commit is contained in:
parent
15bb80e48f
commit
c09ad222b0
39 changed files with 105 additions and 359 deletions
23
.forgejo/workflows/spelling.yml
Normal file
23
.forgejo/workflows/spelling.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Spell Check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
codespell:
|
||||
name: Check spelling
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
run: |
|
||||
git clone --depth 1 https://token:${{ secrets.ACTIONS_TOKEN }}@gugulet.hu/technical/git/g_it/site.git .
|
||||
|
||||
- name: Install codespell
|
||||
run: |
|
||||
apt-get update && apt-get install -y python3-pip
|
||||
pip install codespell
|
||||
|
||||
- name: Run codespell
|
||||
run: codespell --ignore-words-list=gugulet,forgejo,myword '**/*.md'
|
||||
Loading…
Add table
Add a link
Reference in a new issue