diff --git a/.github/wiki b/.github/wiki index c4515bf111..149edfc301 160000 --- a/.github/wiki +++ b/.github/wiki @@ -1 +1 @@ -Subproject commit c4515bf11194c009308fc8f61c88258781342e28 +Subproject commit 149edfc301927b3883c310e1e23911db6b757099 diff --git a/.github/workflows/label-sync.yml b/.github/workflows/label-sync.yml index 0fbd0c5c7c..c31f30a796 100644 --- a/.github/workflows/label-sync.yml +++ b/.github/workflows/label-sync.yml @@ -14,7 +14,7 @@ on: permissions: contents: read - issues: read + issues: write pull-requests: write jobs: diff --git a/CHANGELOG.md b/CHANGELOG.md index d84c12d4a2..6ce2b555ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Sync workflow metadata and managed-asset references requested during agents workflow validation review, including predictable action dispatch condition and label-sync permission updates, plus managed submodule/wiki pointer alignment (#347). + ## [1.25.5] - 2026-05-13 ### Fixed diff --git a/docs/_static/mascot-banner.png b/docs/_static/mascot-banner.png index 2914ca1355..9860d6d7b8 100644 Binary files a/docs/_static/mascot-banner.png and b/docs/_static/mascot-banner.png differ diff --git a/resources/github-actions/auto-resolve-conflicts.yml b/resources/github-actions/auto-resolve-conflicts.yml index 0c248f6a7a..eb953388ec 100644 --- a/resources/github-actions/auto-resolve-conflicts.yml +++ b/resources/github-actions/auto-resolve-conflicts.yml @@ -2,7 +2,8 @@ name: "Fast Forward Predictable Conflict Resolution" on: push: - branches: [ "main" ] + branches: + - main pull_request: types: - opened diff --git a/resources/github-actions/changelog.yml b/resources/github-actions/changelog.yml index 48e7a1ec96..eae94c6ef0 100644 --- a/resources/github-actions/changelog.yml +++ b/resources/github-actions/changelog.yml @@ -36,6 +36,7 @@ permissions: jobs: changelog: + if: ${{ github.event_name != 'pull_request_target' || github.event.pull_request.merged == true }} uses: php-fast-forward/dev-tools/.github/workflows/changelog.yml@main with: changelog-file: ${{ inputs.changelog-file || 'CHANGELOG.md' }}