use ubuntu-24.04 runner #7
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: Pull Requests | |
| on: | |
| push: | |
| branches-ignore: | |
| - "main" | |
| - "master" | |
| - "development" | |
| pull_request: | |
| branches: | |
| - development | |
| jobs: | |
| # UPDATE TO THE MODULE REPO SO PR'S CAN REUSE IT | |
| tests: | |
| uses: coldbox-modules/sqlformatter/.github/workflows/tests.yml@development | |
| secrets: inherit | |
| # Format PR | |
| format: | |
| name: Format | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - uses: Ortus-Solutions/commandbox-action@v1.0.2 | |
| with: | |
| cmd: run-script format | |
| - name: Commit Format Changes | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: Apply cfformat changes |