Merge pull request #75 from shopware/admin-6.6-prod-deps #55
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: Update shopware/platform package | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "shopware/administration/**" | |
- "shopware/core/**" | |
- "shopware/storefront/**" | |
- "shopware/elasticsearch/**" | |
jobs: | |
platform-sync: | |
runs-on: ubuntu-latest | |
concurrency: platform-sync-${{ github.ref }} | |
name: Sync files for shopware/platform package | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.CI_COMMIT_PAT }} | |
- name: Sync files | |
run: php .github/sync-platform.php | |
- name: Add files to git | |
run: git add . | |
- name: Update shopware/platform package | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'chore: update shopware/platform package' |