From e101271373b91a0e3359a2b9eb807732e41a5f3f Mon Sep 17 00:00:00 2001 From: NripeshN Date: Mon, 15 Jan 2024 18:36:03 +0400 Subject: [PATCH 1/2] remove Pull Request Pioneer --- .vaunt/config.yaml | 40 ------------------- .../contributing/contributor_rewards.rst | 15 ------- 2 files changed, 55 deletions(-) diff --git a/.vaunt/config.yaml b/.vaunt/config.yaml index 99840afc3069e..1d766ba67022c 100644 --- a/.vaunt/config.yaml +++ b/.vaunt/config.yaml @@ -11,16 +11,6 @@ achievements: action: issue condition: count(created_at >= "2023-12-26") >= 1 - - achievement: - name: Pull Request Pioneer - icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-00.png - description: Awarded for creating pull requests. - triggers: - - trigger: - actor: author - action: pull_request - condition: count(created_at >= "2023-12-26") >= 1 - - achievement: name: Merging Master icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_04-00.png @@ -61,16 +51,6 @@ achievements: action: issue condition: count(created_at >= "2023-12-26") >= 5 - - achievement: - name: Pull Request Pioneer Bronze - icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-02.png - description: Awarded for creating 5 pull requests. - triggers: - - trigger: - actor: author - action: pull_request - condition: count(created_at >= "2023-12-26") >= 5 - - achievement: name: Merging Master Bronze icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_04-02.png @@ -111,16 +91,6 @@ achievements: action: issue condition: count(created_at >= "2023-12-26") >= 15 - - achievement: - name: Pull Request Pioneer Silver - icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-03.png - description: Awarded for creating 15 pull requests. - triggers: - - trigger: - actor: author - action: pull_request - condition: count(created_at >= "2023-12-26") >= 15 - - achievement: name: Merging Master Silver icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_04-03.png @@ -161,16 +131,6 @@ achievements: action: issue condition: count(created_at >= "2023-12-26") >= 30 - - achievement: - name: Pull Request Pioneer Gold - icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-04.png - description: Awarded for creating 30 pull requests. - triggers: - - trigger: - actor: author - action: pull_request - condition: count(created_at >= "2023-12-26") >= 30 - - achievement: name: Merging Master Gold icon: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_04-04.png diff --git a/docs/overview/contributing/contributor_rewards.rst b/docs/overview/contributing/contributor_rewards.rst index bbf3d6d505051..ec5847fb25ec2 100644 --- a/docs/overview/contributing/contributor_rewards.rst +++ b/docs/overview/contributing/contributor_rewards.rst @@ -9,8 +9,6 @@ Badges **Debugging Dynamos** - These badges are awarded to contributors who demonstrate exceptional skill in identifying and reporting issues. It recognizes the crucial role of pinpointing problems which is fundamental in maintaining the integrity and performance of our codebase. -**Pull Request Pioneer** - These awards are granted to those who actively contribute to the development of our projects by initiating pull requests. This badge acknowledges the importance of collaborative development and the initiative taken in proposing valuable code changes and improvements. - **Merging Master** - These badges are formal recognitions for contributors whose pull requests consistently meet our high standards of quality and are successfully merged into the main codebase. **Merging Wizard** - These exclusive badges are awarded to contributors who successfully get *priority* pull requests merged. This recognition is for handling complex, high-priority tasks that have a substantial impact on the project's progress and success. @@ -44,19 +42,6 @@ Badge Tiers - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_01-04.png :width: 110 :alt: Alternative text - * - Pull Request Pioneer - - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-00.png - :width: 110 - :alt: Alternative text - - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-02.png - :width: 110 - :alt: Alternative text - - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-03.png - :width: 110 - :alt: Alternative text - - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_03-04.png - :width: 110 - :alt: Alternative text * - Merging Master - .. image:: https://raw.githubusercontent.com/unifyai/ivy/main/.vaunt/badges/badge_04-00.png :width: 110 From 8d3626591fc92a351e41a158ea3c1c75707ea2d6 Mon Sep 17 00:00:00 2001 From: NripeshN Date: Mon, 15 Jan 2024 18:40:29 +0400 Subject: [PATCH 2/2] Update condition for achievements in config.yaml --- .vaunt/config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vaunt/config.yaml b/.vaunt/config.yaml index 1d766ba67022c..43131223f3945 100644 --- a/.vaunt/config.yaml +++ b/.vaunt/config.yaml @@ -9,7 +9,7 @@ achievements: - trigger: actor: author action: issue - condition: count(created_at >= "2023-12-26") >= 1 + condition: count(created_at >= "2023-12-26" & labels in {'Useful Issue'}) >= 1 - achievement: name: Merging Master @@ -49,7 +49,7 @@ achievements: - trigger: actor: author action: issue - condition: count(created_at >= "2023-12-26") >= 5 + condition: count(created_at >= "2023-12-26" & labels in {'Useful Issue'}) >= 5 - achievement: name: Merging Master Bronze @@ -89,7 +89,7 @@ achievements: - trigger: actor: author action: issue - condition: count(created_at >= "2023-12-26") >= 15 + condition: count(created_at >= "2023-12-26" & labels in {'Useful Issue'}) >= 15 - achievement: name: Merging Master Silver @@ -129,7 +129,7 @@ achievements: - trigger: actor: author action: issue - condition: count(created_at >= "2023-12-26") >= 30 + condition: count(created_at >= "2023-12-26" & labels in {'Useful Issue'}) >= 30 - achievement: name: Merging Master Gold