Releases: doctrine/.github
Releases · doctrine/.github
1.5.0
New "Composer Lint" workflow
A new workflow has been added, allowing to check if composer.json
is normalized according to https://github.com/ergebnis/composer-normalize.
1.4.1
Bugfix for Github BC-break
Since a few days, attempts to release when using previous versions will fail with
error parsing called workflow
"doctrine/.github/.github/workflows/[email protected]":
workflow is invalid: secret name GITHUB_TOKEN within workflow_call
can not be used since it would collide with system reserved name
When upgrading, it is no longer required to pass that secret:
name: "Git tag, release & create merge-up PR"
uses: "doctrine/.github/.github/workflows/[email protected]"
secrets:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
ORGANIZATION_ADMIN_TOKEN: ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}