Automatically add dates to the catalog files #476
This file contains hidden or 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
| name: Autoformat TOML | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: uncenter/setup-taplo@v1 | |
| - run: taplo fmt | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: ":art: Format TOML with Taplo" | |
| file_pattern: 'apps.toml wishlist.toml graveyard.toml' | |
| commit_user_name: yunohost-bot | |
| commit_user_email: yunohost-bot@users.noreply.github.com | |
| commit_author: 'yunohost-bot <yunohost-bot@users.noreply.github.com>' |