-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26ad9cc
commit be96e94
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Update Spryker SDK | ||
|
||
env: | ||
TARGET_BRANCH: rc | ||
TARGET_OWNER: spryker-sdk | ||
TARGET_REPO: sdk | ||
SOURCE_PACKAGE_NAME: 'spryker-sdk/evaluator' | ||
PR_LABELS: 'composer dependencies' | ||
PR_ASSIGNEES: pavelmaksimov25,DmytroKlymanSpryker | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
trigger-external-pr: | ||
runs-on: ubuntu-latest | ||
|
||
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 }} |