Bump symfony/translation from 7.2.4 to 7.2.6 (#142) #29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Changelog - Update Unreleased" | |
| ################################################################### | |
| # WARNING - THIS ACTION WILL PUSH COMMIT DIRECTLY INTO REPOSITORY # | |
| ################################################################### | |
| on: | |
| push: | |
| branches: | |
| - 5.x | |
| jobs: | |
| changelog-update-unreleased: | |
| name: "Changelog - Update Unreleased" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v2" | |
| - name: "Restore Automation cache" | |
| uses: "actions/cache@v4" | |
| with: | |
| path: | | |
| cache | |
| key: "${{ runner.os }}-automation-${{ hashFiles('**/CHANGELOG.md') }}" | |
| restore-keys: | | |
| ${{ runner.os }}-automation- | |
| - name: "Update CHANGELOG" | |
| uses: "docker://aeonphp/automation:latest" | |
| env: | |
| AEON_AUTOMATION_GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| EON_AUTOMATION_CACHE_DIR: "/github/workspace/cache" | |
| with: | |
| entrypoint: "/composer/vendor/bin/automation" | |
| args: "changelog:generate ${{ github.repository }} --github-file-update-path=CHANGELOG.md --skip-from=\"dependabot[bot]\" --skip-from=\"aeon-automation\"" |