-
Notifications
You must be signed in to change notification settings - Fork 580
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure messages follow semantic guidelines
- Loading branch information
Showing
3 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Compress Icons ποΈ | ||
name: Compress Icons | ||
|
||
on: | ||
schedule: | ||
|
@@ -52,6 +52,6 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "Dashboard Icons Bot" | ||
git add png/ svg/ webp/ | ||
git commit -m "ci: github-actions: compress icons" || exit 0 | ||
git commit -m "ci(github-actions): compress icons" || exit 0 | ||
git pull --rebase origin ${{ github.ref_name }} | ||
git push origin HEAD:${{ github.ref_name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "Update Icons and Resources β¨" | ||
name: Update Icons and Resources | ||
|
||
on: | ||
push: | ||
|
@@ -16,29 +16,29 @@ jobs: | |
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout Repository ποΈ | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: Set Up Python π | ||
- name: Set Up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install Dependencies π¦ | ||
- name: Install Dependencies | ||
run: | | ||
pip install cairosvg pillow | ||
- name: Run SVG to PNG and WEBP Conversion β»οΈ | ||
- name: Run SVG to PNG and WEBP Conversion | ||
run: python scripts/convert_svg_assets.py | ||
|
||
- name: Commit and Push Changes π€ | ||
- name: Commit and Push Changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Dashboard Icons Bot" | ||
git add png/ webp/ | ||
git commit -m "ci: github-actions: convert SVG assets to PNG and WEBP" || exit 0 | ||
git commit -m "ci(github-actions): convert SVG assets to PNG and WEBP" || exit 0 | ||
git pull --rebase origin ${{ github.ref_name }} | ||
git push origin HEAD:${{ github.ref_name }} | ||
|
@@ -48,25 +48,25 @@ jobs: | |
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout Repository ποΈ | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: Set Up Python π | ||
- name: Set Up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Generate File Tree π³ | ||
- name: Generate File Tree | ||
run: python scripts/generate_file_tree.py svg png webp | ||
|
||
- name: Commit and Push Changes π€ | ||
- name: Commit and Push Changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Dashboard Icons Bot" | ||
git add tree.json tree.xml | ||
git commit -m "ci: github-actions: generate file tree" || exit 0 | ||
git commit -m "ci(github-actions): generate file tree" || exit 0 | ||
git pull --rebase origin ${{ github.ref_name }} | ||
git push origin HEAD:${{ github.ref_name }} | ||
|
@@ -76,24 +76,24 @@ jobs: | |
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout Repository ποΈ | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref_name }} | ||
|
||
- name: Set Up Python π | ||
- name: Set Up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Generate ICONS.md π | ||
- name: Generate ICONS.md | ||
run: python scripts/generate_icons_page.py | ||
|
||
- name: Commit and Push Changes π€ | ||
- name: Commit and Push Changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Dashboard Icons Bot" | ||
git add ICONS.md | ||
git commit -m "ci: github-actions: generate ICONS.md" || exit 0 | ||
git commit -m "ci(github-actions): generate ICONS.md" || exit 0 | ||
git pull --rebase origin ${{ github.ref_name }} | ||
git push origin HEAD:${{ github.ref_name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Validate and Preview Icons β | ||
name: Validate and Preview Icons | ||
|
||
on: | ||
pull_request: | ||
|