Merge pull request #579 from doctrine/dependabot/github_actions/1.8.x/doctrine/dot-github-12.0.0

Bump doctrine/.github from 10.1.0 to 12.1.0
Add documentation builder
This commit is contained in:
Jérôme Tamarelle
2025-10-25 00:40:04 +02:00
committed by GitHub
6 changed files with 13 additions and 4 deletions

View File

@@ -11,4 +11,4 @@ on:
jobs:
coding-standards:
name: "Coding Standards"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@10.1.0"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@12.1.0"

View File

@@ -17,4 +17,4 @@ on:
jobs:
documentation:
name: "Documentation"
uses: "doctrine/.github/.github/workflows/documentation.yml@10.1.0"
uses: "doctrine/.github/.github/workflows/documentation.yml@12.1.0"

View File

@@ -8,7 +8,7 @@ on:
jobs:
release:
name: "Git tag, release & create merge-up PR"
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@10.1.0"
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@12.1.0"
secrets:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

View File

@@ -11,4 +11,4 @@ on:
jobs:
static-analysis:
name: "Static Analysis"
uses: "doctrine/.github/.github/workflows/phpstan.yml@10.1.0"
uses: "doctrine/.github/.github/workflows/phpstan.yml@12.1.0"

3
.gitignore vendored
View File

@@ -1,3 +1,6 @@
docs/output/
docs/composer.lock
docs/vendor/
phpunit.xml
vendor/
.phpcs-cache

6
docs/composer.json Normal file
View File

@@ -0,0 +1,6 @@
{
"type": "project",
"require": {
"doctrine/docs-builder": "^1.0.3"
}
}