Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GrimLink committed Nov 26, 2023
1 parent 125101f commit a093a03
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 4 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Dependency Update

env:
NODE: 18
GIT_USER: "Automated"
GIT_EMAIL: "[email protected]"
GIT_BRANCH: actions/update-icons

on:
pull_request:
types:
- closed

jobs:
dependency_update:
name: Update icons
runs-on: ubuntu-latest
if: |
github.event.pull_request.merged == true &&
startsWith(github.event.pull_request.head.ref, 'dependabot/')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE }}"
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- name: Creating PR for new Icons
run: |-
timestamp=$(date +"%Y-%m-%d")
git config user.name ${{ env.GIT_USER }}
git config user.email ${{ env.GIT_EMAIL }}
git checkout -b "${{ env.GIT_BRANCH }}-${timestamp}"
git add -A
git commit -m "Update icons with dependency update" || exit 0
git push --set-upstream origin ${{ env.GIT_BRANCH }}-${timestamp}
gh pr create --title "Update icons with new dependency update" --body "This updates the Hyva version with the latest icons from Flagpack Icons" -B main --label dependencies
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.2] - 2023-11-26
### Fixed
- KSA (sa) Flag Color, thanks to [@murtadha-ahmed](https://github.com/murtadha-ahmed)

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "siteation/magento2-hyva-icons-flags",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",
"type": "magento2-module",
"description": "Flags icons for Hyva Themes",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sitation/magento2-hyva-icons-flags",
"version": "1.0.1",
"version": "1.0.0",
"description": "the npm pkg is here just here to update the Flags icons for Hyvä",
"homepage": "https://siteation.dev",
"author": {
Expand Down

0 comments on commit a093a03

Please sign in to comment.