File: codespell.yml

package info (click to toggle)
bindfs 1.18.4-0.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,008 kB
  • sloc: sh: 4,442; ansic: 4,287; ruby: 1,288; makefile: 47
file content (23 lines) | stat: -rw-r--r-- 496 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2023 Sebastian Pipping <sebastian@pipping.org>
# Licensed under GPL v2 or later

name: Enforce codespell-clean spelling

on:
  pull_request:
  push:
  schedule:
    - cron: '0 3 * * 5'  # Every Friday at 3am
  workflow_dispatch:

# Minimum permissions for security
permissions:
  contents: read

jobs:
  codespell:
    name: Enforce codespell-clean spelling
    runs-on: ubuntu-22.04
    steps:
    - uses: actions/checkout@v4
    - uses: codespell-project/actions-codespell@v2.1