Skip to content

Commit

Permalink
fix: include commit commands
Browse files Browse the repository at this point in the history
  • Loading branch information
makafsal committed Sep 20, 2024
1 parent e75d506 commit f572f44
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions .github/workflows/update-example-gallery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,28 @@ jobs:
- name: Create pull request
if: failure() && steps.up_to_date.outcome == 'failure'
run: echo ${{ steps.up_to_date.outcome }}
# if: steps.up_to_date.outcome == 'failure'
# id: create-pr
# uses: peter-evans/create-pull-request@v4
# with:
# token: ${{ secrets.CREATE_PR_ACCESS_TOKEN }}
# commit-message: 'chore: update example gallery'
# committer: GitHub <[email protected]>
# author:
# ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
# branch: 'update-examples'
# branch-suffix: random
# title: 'chore: update example gallery'
# body: |
# This PR was automatically generated to update provided examples.
# The goal is to keep our examples up-to-date with the latest changes from our own package.
id: create-pr
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.CREATE_PR_ACCESS_TOKEN }}
commit-message: 'chore: update example gallery'
committer: GitHub <[email protected]>
author:
${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
branch: 'update-examples'
branch-suffix: random
title: 'chore: update example gallery'
body: |
This PR was automatically generated to update provided examples.
The goal is to keep our examples up-to-date with the latest changes from our own package.
# #### What did you change?
#### What did you change?
# This action ran `yarn update-gallery-config` to update examples as necessary.
This action ran `yarn update-gallery-config` to update examples as necessary.
# #### How did you test and verify your work?
#### How did you test and verify your work?
# This PR should only be merged reviewing the following checks:
# - [ ] `yarn ci-check` runs cleanly and all tests pass.
# - [ ] Storybook runs correctly in the Netlify deploy-preview.
# - [ ] Updated components render correctly in the examples section of Storybook.
This PR should only be merged reviewing the following checks:
- [ ] `yarn ci-check` runs cleanly and all tests pass.
- [ ] Storybook runs correctly in the Netlify deploy-preview.
- [ ] Updated components render correctly in the examples section of Storybook.

0 comments on commit f572f44

Please sign in to comment.