Parent ID on Menu items table should be nullable for top-level items. #45
This file contains 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: ContentBox Snapshots | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
############################################# | |
# Tests First baby! We fail, no build :( | |
############################################# | |
tests: | |
uses: ./.github/workflows/tests.yml | |
secrets: inherit | |
########################################################################################## | |
# Format Source Code | |
########################################################################################## | |
format: | |
name: Code Auto-Formatting | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup CommandBox CLI | |
uses: Ortus-Solutions/[email protected] | |
with: | |
install: commandbox-cfformat | |
warmup: true | |
- name: Run formatting rules | |
run: box run-script format | |
- name: Commit Format Changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply cfformat changes | |
push_options: --force | |
############################################# | |
# Build Snapshot Release | |
############################################# | |
build: | |
uses: ./.github/workflows/release.yml | |
needs: [ tests, format ] | |
secrets: inherit | |
with: | |
snapshot: true |