Update Systemd security settings #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2024 Sebastian Pipping <[email protected]> | |
# 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 | |
with: | |
# "accreting" is the gerund of verb "to accrete" (file obstack/obstack.h) | |
# "annualy" is a known backwards compat misspelling (file anacron/readtab.c) | |
# "dows" is plural of "day of the week" in crontab syntax (file src/entry.c) | |
# "vas" is from "Jason Vas Dias" of Red Hat, Inc. (file src/security.c) | |
# Words need to be (1) separated by a comma and (2) all lowercase! | |
ignore_words_list: accreting,annualy,dows,vas |