From 616a4b92e5376949c71f643b80517d46f79d96be Mon Sep 17 00:00:00 2001 From: Tenkuma <85490958+adrianvic@users.noreply.github.com> Date: Mon, 15 Dec 2025 00:42:21 -0300 Subject: [PATCH 1/3] More badges! --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d8a7bf..c0f562c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ eye_of_nemesis_social_cover -[![Build status badge](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml/badge.svg)](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml) ![Modrinth link](https://img.shields.io/badge/Modrinth-Black?style=social&logo=Modrinth&logoColor=green&link=https%3A%2F%2Fmodrinth.com%2Fplugin%2Feye-of-nemesis%2F) +[![Build status badge](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml/badge.svg)](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml) +![GitHub Release](https://img.shields.io/github/v/release/adrianvic/NemesisEye?include_prereleases&style=flat&label=Latest%20Release) +![English Wiki Badge](https://img.shields.io/badge/English-White?style=flat-square&label=Wiki&color=black&link=https%3A%2F%2Fgithub.com%2Fadrianvic%2FNemesisEye%2Fwiki) +![Portuguese Wiki Badge](https://img.shields.io/badge/Portuguese-White?style=flat-square&label=Wiki&color=black&link=https%3A%2F%2Fmgr.rf.gd%2Fw%2FEye_of_Nemesis) # Eye of Nemesis Eye of Nemesis is a plugin that allows server admins to write policies that will deny or allow (black/whitelist) players to do specific things based on the value of nodes. From 8ee5891dbac2939491f07f913e15ea818ca3ce72 Mon Sep 17 00:00:00 2001 From: Tenkuma <85490958+adrianvic@users.noreply.github.com> Date: Mon, 15 Dec 2025 00:47:44 -0300 Subject: [PATCH 2/3] Fix badges links. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c0f562c..ca7f2cb 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ eye_of_nemesis_social_cover -![Modrinth link](https://img.shields.io/badge/Modrinth-Black?style=social&logo=Modrinth&logoColor=green&link=https%3A%2F%2Fmodrinth.com%2Fplugin%2Feye-of-nemesis%2F) +[![Modrinth Badge](https://img.shields.io/badge/Modrinth-Black?style=social&logo=Modrinth&logoColor=green)](https://modrinth.com/plugin/eye-of-nemesis) [![Build status badge](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml/badge.svg)](https://github.com/adrianvic/NemesisEye/actions/workflows/build.yml) -![GitHub Release](https://img.shields.io/github/v/release/adrianvic/NemesisEye?include_prereleases&style=flat&label=Latest%20Release) -![English Wiki Badge](https://img.shields.io/badge/English-White?style=flat-square&label=Wiki&color=black&link=https%3A%2F%2Fgithub.com%2Fadrianvic%2FNemesisEye%2Fwiki) -![Portuguese Wiki Badge](https://img.shields.io/badge/Portuguese-White?style=flat-square&label=Wiki&color=black&link=https%3A%2F%2Fmgr.rf.gd%2Fw%2FEye_of_Nemesis) +[![GitHub Release](https://img.shields.io/github/v/release/adrianvic/NemesisEye?include_prereleases&style=flat&label=Latest%20Release)](https://github.com/adrianvic/NemesisEye/releases) +[![English Wiki Badge](https://img.shields.io/badge/English-White?style=flat-square&label=Wiki&color=black)](https://github.com/adrianvic/NemesisEye/wiki) +[![Portuguese Wiki Badge](https://img.shields.io/badge/Portuguese-White?style=flat-square&label=Wiki&color=black)](https://mgr.rf.gd/w/Eye_of_Nemesis) # Eye of Nemesis Eye of Nemesis is a plugin that allows server admins to write policies that will deny or allow (black/whitelist) players to do specific things based on the value of nodes. From 21df2cc7bfbeeac93ea591a4b5c2e268ba4e7668 Mon Sep 17 00:00:00 2001 From: Tenkuma <85490958+adrianvic@users.noreply.github.com> Date: Mon, 15 Dec 2025 00:54:44 -0300 Subject: [PATCH 3/3] Run build only when pushing changes to src/**, .github/** and Gradle files. --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55bea5f..c3c036b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,13 @@ name: Build -on: [push] +on: + push: + paths: + - 'src/**' + - '.github/**' + - 'build.gradle.kts' + - 'gradle.properties' + - 'settings.gradle' jobs: build: @@ -33,4 +40,4 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v6.0.0 with: - path: build/libs/*.jar \ No newline at end of file + path: build/libs/*.jar