ubiquity / ubiquibot

Putting the 'A' in 'DAO'
https://github.com/marketplace/ubiquibot
MIT License
17 stars 59 forks source link

Initialize XP Gating: Database & Configuration #786

Open 0x4007 opened 11 months ago

0x4007 commented 11 months ago

Overview

Gating Init Config

[
  {
    name: "Priority: 1 (Normal)",
    "min-xp": {
      repo: 0,
      org: 0,
      global: 0,
    },
  },
  {
    name: "Priority: 2 (Medium)",
    "min-xp": {
      repo: 0,
      org: 0,
      global: 0,
    },
  },
  {
    name: "Priority: 3 (High)",
    "min-xp": {
      repo: 0,
      org: 0,
      global: 0,
    },
  },
  {
    name: "Priority: 4 (Urgent)",
    "min-xp": {
      repo: 0,
      org: 0,
      global: 0,
    },
  },
  {
    name: "Priority: 5 (Emergency)",
    "min-xp": {
      repo: 0,
      org: 0,
      global: 0,
    },
  },
];

https://github.com/ubiquity/ubiquibot/blob/dba8308779aa1ea74e5a98c227a5e92ae3307d9b/src/configs/ubiquibot-config-default.ts#L32-L48