0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-04 21:14:00 +00:00
This commit is contained in:
alex289 2023-07-08 18:19:28 +02:00
parent 519ab33dc7
commit 53033693d3
No known key found for this signature in database
GPG Key ID: 573F77CD2D87F863

View File

@ -29,15 +29,6 @@ jobs:
id: changes
run: git diff --exit-code || echo "::set-output name=changes::true"
- name: Commit and push changes
if: steps.changes.outputs.changes == 'true'
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add .
git commit -m "Update packages"
git push
- name: Get current date
if: steps.changes.outputs.changes == 'true'
id: date
@ -47,10 +38,15 @@ jobs:
if: steps.changes.outputs.changes == 'true'
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT }}
branch: "update/${{ steps.date.outputs.date }}"
label: dependencies
delete-branch: true
commit-message: "Update packages"
committer: GitHub <noreply@github.com>
author: alex289 <alex289@users.noreply.github.com>
assignees: alex289
reviewers: alex289
title: "Automatic Package Update ${{ steps.date.outputs.date }}"
body: |
This pull request includes updates to the packages in the solution.