Compare commits
4 Commits
9c24d60c20
...
ef1b3b017a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
ef1b3b017a | ||
![]() |
be92e151d9 | ||
![]() |
52f3a0bdc8 | ||
![]() |
2dc7c93045 |
33
.github/workflows/commitizen.yml
vendored
@@ -1,33 +0,0 @@
|
||||
name: Commitizen Check on Push and Pull
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
commitizen_check:
|
||||
name: Check Commitizen Commit on Push
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '14'
|
||||
|
||||
- name: Install Commitizen
|
||||
run: npm install -g commitizen
|
||||
|
||||
- name: Verify Commitizen Commit
|
||||
run: |
|
||||
if git log --format='%s' ${{ github.event.before }}..${{ github.sha }} | grep -v '^(feat|fix|docs|style|refactor|perf|test|chore)(\(.+\))?: .+'; then
|
||||
echo "Invalid commit message found. Please use Commitizen convention."
|
||||
exit 1
|
||||
fi
|
38
.github/workflows/cz.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
name: Check Conventional Commit
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
check-commit-message:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Check Conventional Commit
|
||||
run: |
|
||||
# Define the conventional commit types with emojis
|
||||
TYPES=("🚀 feat" "🐛 fix" "📝 docs" "✨ style" "🛠 refactor" "⚡️ perf" "🔬 test" "🔧 build" "🤖 ci" "🧹 chore" "⏪ revert")
|
||||
|
||||
# Extract the commit type and emoji from the commit message
|
||||
COMMIT_MSG=$(git log --format=%B -n 1)
|
||||
for type in "${TYPES[@]}"; do
|
||||
type_emoji=${type}
|
||||
type=${type_emoji#* }
|
||||
emoji=${type_emoji% *}
|
||||
if [[ $COMMIT_MSG == $emoji* ]]; then
|
||||
echo "Commit message is a conventional commit"
|
||||
exit 0
|
||||
fi
|
||||
done
|
||||
|
||||
# If we reach here, the commit message is not a conventional commit
|
||||
echo "Commit message is not a conventional commit"
|
||||
exit 1
|
28
README.md
@@ -1,18 +1,21 @@
|
||||
# 🌅 Snigdha OS Backgrounds
|
||||
|
||||
<p align="center">
|
||||
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge" alt="License: MIT"></a>
|
||||
<a href="https://github.com/Snigdha-OS/snigdhaos-backgrounds/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=for-the-badge" alt="Contributions Welcome"></a>
|
||||
<a href="https://github.com/Snigdha-OS/snigdhaos-backgrounds/actions"><img src="https://img.shields.io/github/actions/workflow/status/Snigdha-OS/snigdhaos-backgrounds/cz.yml?branch=master&style=for-the-badge" alt="Build Status"></a>
|
||||
<a href="https://snigdhaos.org"><img src="https://img.shields.io/website?url=https%3A%2F%2Fsnigdhaos.org&style=for-the-badge" alt="Website Status"></a>
|
||||
</p>
|
||||
|
||||
Welcome to **Snigdha OS Backgrounds**! 🎨
|
||||
This repository is home to the stunning wallpapers and backgrounds designed for **SnigdhaOS**. Whether you're here to browse, contribute, or download, we've got something visually captivating for everyone.
|
||||
|
||||
|
||||
|
||||
## 🖼️ What’s Inside?
|
||||
|
||||
✨ A collection of high-quality wallpapers for Snigdha OS.
|
||||
🎨 Themes ranging from minimalistic to vibrant designs.
|
||||
🌌 Regular updates with fresh, original content.
|
||||
|
||||
|
||||
|
||||
## 📂 Folder Structure
|
||||
|
||||
```plaintext
|
||||
@@ -24,11 +27,8 @@ snigdhaos-backgrounds/
|
||||
├── LICENSE
|
||||
├── README.md
|
||||
└── push.sh
|
||||
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 🚀 How to Use
|
||||
|
||||
1. **Download:**
|
||||
@@ -40,8 +40,6 @@ snigdhaos-backgrounds/
|
||||
3. **Apply:**
|
||||
Set it as your desktop background in SnigdhaOS or any other operating system.
|
||||
|
||||
|
||||
|
||||
## 🌟 Contributing
|
||||
|
||||
We’d love your help in making this collection even more awesome! 🖌️
|
||||
@@ -56,28 +54,20 @@ Please make sure your wallpapers are:
|
||||
✅ Free from copyright issues.
|
||||
✅ Original or appropriately credited.
|
||||
|
||||
|
||||
|
||||
## 📜 License
|
||||
|
||||
This project is licensed under the **MIT License**. Feel free to use the wallpapers, but give credit where it’s due. ❤️
|
||||
|
||||
|
||||
|
||||
## ❤️ Acknowledgments
|
||||
|
||||
A big thank you to the community for contributing and supporting this project! 🙌
|
||||
Feel free to share your thoughts, suggestions, and creations.
|
||||
|
||||
|
||||
|
||||
## 🔗 Stay Connected
|
||||
|
||||
Got ideas or questions? Reach out to us here:
|
||||
|
||||
📧 **Email:** [hello@snigdhaos.org](mailto:hello@snigdhaos.org)
|
||||
🌐 **Website:** [Snigdha OS Official](https://snigdhaos.org)
|
||||
🌐 **Website:** [Snigdha OS Official](https://snigdhaos.org)
|
||||
|
||||
|
||||
|
||||
Enjoy the vibrant world of SnigdhaOS Backgrounds! 🎉
|
||||
Enjoy the vibrant world of SnigdhaOS Backgrounds! 🎉
|
Before Width: | Height: | Size: 312 KiB |
Before Width: | Height: | Size: 274 KiB |
Before Width: | Height: | Size: 289 KiB |
Before Width: | Height: | Size: 238 KiB |
Before Width: | Height: | Size: 317 KiB |
Before Width: | Height: | Size: 296 KiB |
Before Width: | Height: | Size: 245 KiB |
Before Width: | Height: | Size: 227 KiB |
Before Width: | Height: | Size: 251 KiB |
Before Width: | Height: | Size: 231 KiB |
Before Width: | Height: | Size: 407 KiB |
Before Width: | Height: | Size: 151 KiB |
Before Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 143 KiB |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 758 KiB |