Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/wiki
Submodule wiki updated from 260749 to 9cd099
2 changes: 2 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ on:
default: release/v

permissions:
actions: write
contents: write
pull-requests: write
repository-projects: write

jobs:
changelog:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,32 @@ name: "Fast Forward Test Suite"

on:
push:
pull_request:
types:
- opened
- synchronize
- reopened
workflow_dispatch:
inputs:
max-outdated:
description: Maximum number of outdated packages allowed by the dependencies command.
required: false
type: number
default: -1
publish-required-statuses:
description: Mirror required test matrix checks as commit statuses for workflow-dispatched runs.
required: false
type: boolean
default: false

permissions:
contents: read
statuses: write

jobs:
tests:
uses: php-fast-forward/dev-tools/.github/workflows/tests.yml@main
with:
max-outdated: ${{ inputs.max-outdated || -1 }}
publish-required-statuses: ${{ inputs.publish-required-statuses || false }}
secrets: inherit
2 changes: 2 additions & 0 deletions .github/workflows/wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
types: [opened, synchronize, reopened]

permissions:
actions: write
contents: write
pull-requests: read

Expand All @@ -15,6 +16,7 @@ concurrency:
jobs:
preview:
permissions:
actions: write
contents: write
pull-requests: read
# Pull-request wiki previews live here. Publication and preview cleanup are
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Restore catalog and domain enum coverage so CI dependency and coverage gates pass.
- Update DevTools workflow wrappers so changelog releases and wiki-triggered test validation receive the permissions and triggers required by the shared automation (#3).
Loading