Bump symfony/cache from 6.4.7 to 6.4.8 #324
This file contains 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: | |
- 1.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@v2" | |
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 }}" | |
AEON_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\"" |