Skip to content

Commit

Permalink
updated github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jayam04 committed Apr 10, 2024
1 parent 1ae9f8d commit 1fbaec5
Show file tree
Hide file tree
Showing 2 changed files with 1,637 additions and 4 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/update-font-list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,21 @@ jobs:
run: |
scripts/increment_minor_version.py
- name: Checkout
uses: actions/[email protected]
- name: Commit changes
if: steps.check_file_changed.outputs.file_changed == 'true'
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
git add .
git commit -m 'Update font list'
- name: Create Pull Request
if: steps.check_file_changed.outputs.file_changed == 'true'
uses: peter-evans/create-pull-request@v3
with:
ssh-key: ${{secrets.GA1_GITHUB_ACTIONS_SSH_KEY}}
token: ${{ secrets.GITHUB_TOKEN }}
committer: GitHub Actions <[email protected]>
author: GitHub Actions <[email protected]>
title: 'Update Font List'
branch: update-font-list
body: This pull request updates the font list.
Loading

0 comments on commit 1fbaec5

Please sign in to comment.