Update event and timetable controller to ensure that users can only m… #39
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: Format the code | |
| on: | |
| push: | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| name: Format Files | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "20" | |
| - name: Prettier | |
| run: npx prettier --write **/*.{js,ts,tsx,json,md} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: stefanzweifel/git-auto-commit-action@v4 | |
| if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} | |
| with: | |
| commit_message: "Auto-formatted the code using Prettier" |