Add .forgejo/workflows/actions.yml
Some checks failed
Format / format-code (push) Failing after 5s

This commit is contained in:
Alexia 2025-03-09 23:03:52 +00:00
commit 526117a222

View file

@ -0,0 +1,23 @@
name: Format
on: push
jobs:
format-code:
runs-on: docker
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
# Other steps that change files in the repository go here
# …
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5