SDK-5618: Update test data provider #53
Workflow file for this run
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 Spryker Upgrader | |
env: | |
TARGET_BRANCH: master | |
TARGET_OWNER: spryker-sdk | |
TARGET_REPO: upgrader | |
SOURCE_PACKAGE_NAME: 'spryker-sdk/integrator' | |
PR_LABELS: 'composer dependencies' | |
PR_ASSIGNEES: pavelmaksimov25,DmytroKlymanSpryker | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: | |
jobs: | |
trigger-external-pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.merged == true }} | |
steps: | |
# https://github.com/marketplace/actions/setup-php-action | |
- name: "Install PHP" | |
uses: shivammathur/[email protected] | |
with: | |
php-version: 8.0 | |
tools: composer:v2 | |
- run: | | |
echo ${{ github.event.pull_request.merged }} | |
echo ${{ github.event.pull_request }} | |
# https://github.com/marketplace/actions/get-current-pull-request | |
- name: "Collect PR data" | |
uses: 8BitJonny/[email protected] | |
id: PR | |
with: | |
github-token: ${{ secrets.PAT }} | |
sha: ${{ github.event.pull_request.head.sha }} | |
# https://github.com/marketplace/actions/checkout | |
- name: "Checkout target repository" | |
if: ${{ success() }} | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
repository: ${{ env.TARGET_OWNER }}/${{ env.TARGET_REPO }} | |
path: ${{ env.TARGET_REPO }} | |
fetch-depth: 0 | |
- name: "Update composer dependency" | |
if: ${{ success() }} | |
run: | | |
composer update ${{ env.SOURCE_PACKAGE_NAME }} --no-scripts --no-progress --no-install | |
working-directory: ${{ env.TARGET_REPO }} | |
- name: "Prepare PR Body" | |
if: ${{ success() }} | |
id: target-pr-body | |
run: | | |
target_pr_body="This PR is automatically created by GitHub action to update dependency. | |
Original PR [${{ steps.PR.outputs.number }}](${{ steps.PR.outputs.pr_url }}) | |
Original PR Body: | |
${{ steps.PR.outputs.pr_body }}" | |
echo 'target_pr_body<<EOF' >> $GITHUB_OUTPUT | |
echo "$target_pr_body" >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
# https://github.com/marketplace/actions/create-pull-request | |
- name: "Commit, push and create pull request." | |
if: ${{ success() }} | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.PAT }} | |
path: ${{ env.TARGET_REPO }} | |
base: ${{ env.TARGET_BRANCH }} | |
branch: ${{ format('{0}-dependency-{1}-{2}', fromJson(steps.PR.outputs.pr).head.ref, env.REPO, steps.PR.outputs.number) }} | |
branch-suffix: timestamp | |
title: ${{ format('Dependency update. {0}', steps.PR.outputs.pr_title) }} | |
body: ${{ steps.target-pr-body.outputs.target_pr_body }} | |
committer: SprykerReleaseBot <[email protected]> | |
author: SprykerReleaseBot <[email protected]> | |
labels: ${{ env.PR_LABELS }} | |
delete-branch: true | |
assignees: ${{ env.PR_ASSIGNEES }} |