Skip to content

Commit

Permalink
fix(update-schemas): commit message description
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov committed Nov 15, 2024
1 parent 6e03b37 commit fbc0fd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
- id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- id: changes
run: git diff CHANGELOG.md | awk '/^\+[ -]/ {print substr($0, 2)}' > changes.out
run: git diff main CHANGELOG.md | awk '/^\+[ -]/ {print substr($0, 2)}' > changes.out
- id: create_pr
uses: peter-evans/create-pull-request@v7
with:
author: GitHub <[email protected]>
body-path: changes.out
branch: update/${{ steps.date.outputs.date }}-${{ github.run_id }}
commit-message: "chore(update): update schemas (${{ steps.date.outputs.date }})"
title: "chore(update): update schemas (${{ steps.date.outputs.date }})"
commit-message: "chore(dependencies): update schemas (${{ steps.date.outputs.date }})"
title: "chore(dependencies): update schemas (${{ steps.date.outputs.date }})"
labels: |
dependencies
- name: Close previous update PRs
Expand Down

0 comments on commit fbc0fd6

Please sign in to comment.