Skip to content

fix permissions

fix permissions #6

Workflow file for this run

name: Build Snapshot
on:
push:
branches:
- 'development'
# Unique group name per workflow-branch/tag combo
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
##########################################################################################
# Module Tests
##########################################################################################
tests:

Check failure on line 17 in .github/workflows/snapshot.yml

View workflow run for this annotation

GitHub Actions / Build Snapshot

Invalid workflow file

The workflow is not valid. .github/workflows/snapshot.yml (Line: 17, Col: 3): Error calling workflow 'coldbox-modules/cbpayments/.github/workflows/tests.yml@418a571d48520ca71cab8482f93baa9a046c8f1c'. The workflow is requesting 'checks: write, pull-requests: write', but is only allowed 'checks: none, pull-requests: none'.
secrets: inherit
uses: ./.github/workflows/tests.yml
##########################################################################################
# Format Source Code
##########################################################################################
format:
name: Code Auto-Formatting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Auto-format
uses: Ortus-Solutions/commandbox-action@v1.0.2
with:
cmd: run-script format
- name: Commit Format Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply cfformat changes
##########################################################################################
# Release it
##########################################################################################
release:
uses: ./.github/workflows/release.yml
needs: [ tests, format ]
secrets: inherit
with:
snapshot: true