This commit is contained in:
commit
526117a222
1 changed files with 23 additions and 0 deletions
23
.forgejo/workflows/actions.yml
Normal file
23
.forgejo/workflows/actions.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue