Skip to content

Fix to match CFML query metadata behavior #5

Fix to match CFML query metadata behavior

Fix to match CFML query metadata behavior #5

Workflow file for this run

name: Pull Requests
on:
push:
branches-ignore:
- "main"
- "master"
- "development"
- "releases/v*"
pull_request:
branches:
- "releases/v*"
- development
jobs:
tests:

Check failure on line 16 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / Pull Requests

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 16, Col: 3): Error calling workflow 'ortus-boxlang/bx-compat-cfml/.github/workflows/tests.yml@d5e2dd1794216bbf91729b539eca5f14dfc53000'. The nested job 'publish-test-results' is requesting 'checks: write, issues: read, pull-requests: write', but is only allowed 'checks: none, issues: none, pull-requests: none'.
uses: ./.github/workflows/tests.yml
secrets: inherit
# Format PR
format_check:
name: Checks Source Code Formatting
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: 21
- uses: Ortus-Solutions/commandbox-action@v1.0.2
with:
cmd: run-script format:check
- name: Verify Code Formatting
run: ./gradlew spotlessCheck