Compare commits

...

40 Commits

Author SHA1 Message Date
mononaut
20a4b2c48f
Merge pull request #96 from mempool/mononaut/add-noderunners
Some checks failed
JSON check / json_validator (push) Has been cancelled
Add Noderunners
2026-04-09 11:33:24 +09:00
Mononaut
c140d3ad3f
Add Noderunners 2026-04-09 02:29:03 +00:00
wiz
ea3f377e83
Merge pull request #95 from mempool/mononaut/add-solopool 2026-03-18 12:21:47 +09:00
Mononaut
68d2eddc97
Add SoloPool 2026-03-16 02:26:49 +00:00
mononaut
c00f086d45
Merge pull request #94 from mempool/mononaut/update-futurebit-tag
update futurebit tag
2026-03-10 12:17:51 +09:00
Mononaut
fdb860d885
update futurebit tag 2026-03-06 02:29:53 +00:00
mononaut
6abbdc8b98
Merge pull request #93 from mempool/orangesurf/braiins-solo
Add Braiins Solo entry to pools-v2.json
2026-02-24 22:44:11 +09:00
orangesurf
9354c59203
Add Braiins Solo entry to pools-v2.json
Added Braiins Solo entry with ID, name, and link.
2026-02-24 12:15:41 +00:00
wiz
6f0dc29c3a
Add wiz vanity address 2026-02-11 19:46:21 +09:00
wiz
e9e29816de
Merge pull request #92 from mempool/mononaut/update-nicehash 2026-01-16 15:07:17 +09:00
Mononaut
9075c8be88
update nicehash tags 2026-01-16 03:09:22 +00:00
wiz
dfea2032cd
Merge pull request #91 from mempool/orangesurf/auto-review-tag
Set review needed automatically
2025-12-10 01:00:54 +09:00
orangesurf
c04d421cf5
Set review needed automatically 2025-12-09 18:21:26 +09:00
softsimon
03eab2b2dd
Merge pull request #90 from mempool/simon/rename-luckypool
rename luckypool -> GDPool
2025-11-26 11:44:03 +09:00
softsimon
3ec7756dd9 rename luckypool -> GDPool 2025-11-26 11:19:41 +09:00
wiz
cfa52c0ba4
Merge pull request #89 from mempool/mononaut/add-est3lar 2025-10-21 13:47:37 +08:00
Mononaut
e0470005e6
Add Est3lar 2025-10-21 04:43:46 +00:00
wiz
08dc19f091
Merge pull request #87 from mempool/mononaut/redrock 2025-10-09 21:32:31 -10:00
Mononaut
d8967b53f5
Add RedRock Pool 2025-08-22 15:06:06 +00:00
wiz
7a8e2d0691
Merge pull request #86 from mempool/mononaut/parasite 2025-05-16 13:09:31 -10:00
Mononaut
ddb4122e82
Add parasite 2025-05-16 20:09:31 +00:00
wiz
95ffa89d0d
Merge pull request #85 from 7Wxcka7X/master
Add BTCLab
2025-04-20 15:30:24 +09:00
7Wxcka7X
75837f9b0e
Add BTCLab 2025-04-19 12:53:02 +02:00
wiz
d516dd1708
Merge pull request #84 from mempool/nymkappa/nymkappa 2025-04-16 20:07:31 +09:00
nymkappa
7dcef2af5b
add nymkappa 2025-04-16 11:18:26 +09:00
wiz
895cf0903e
Merge pull request #83 from mempool/mononaut/innopolis
Add innopolis tech
2025-04-06 15:33:47 +09:00
Mononaut
cf766de172
Add innopolis tech 2025-04-06 06:16:14 +00:00
wiz
40394e9fae
Merge pull request #82 from mempool/mononaut/update-bsquared 2025-04-01 14:36:24 +09:00
Mononaut
56f743111a
Update bsquared tags and addresses 2025-04-01 05:26:14 +00:00
wiz
a8f875c546
Merge pull request #81 from mempool/mononaut/b2pool 2025-04-01 10:17:21 +09:00
Mononaut
8768071e24
Add B2Pool 2025-04-01 01:13:04 +00:00
wiz
fd3e44f87d
Merge pull request #80 from mempool/mononaut/public-pool 2025-03-23 16:27:04 +09:00
Mononaut
51b5522343
Add public pool 2025-03-23 04:56:29 +00:00
wiz
579243c6de
Merge pull request #79 from mempool/mononaut/fix-luxor 2025-02-07 04:50:47 -10:00
Mononaut
14fd1f9ad0
Fix luxor tags & add current address 2025-02-07 14:23:34 +00:00
softsimon
0138019f39
Merge pull request #77 from mempool/nymkappa/pool-updates
Pool updates
2025-01-22 14:45:45 +07:00
nymkappa
45df756a2d
Add mining dutch 2025-01-22 15:57:33 +09:00
nymkappa
7f83c4f2d7
Update terra pool tags 2025-01-22 15:57:09 +09:00
nymkappa
479b10dc34
Add luckypool 2025-01-22 15:57:00 +09:00
nymkappa
0f9ccb1b4f
New Binance coinbase address 2025-01-22 15:56:51 +09:00
2 changed files with 209 additions and 5 deletions

View File

@ -0,0 +1,84 @@
# Workflow: Automatically set project status to "Review Needed" when a reviewer is requested
name: Set Project Status on Review Request
# Trigger: Runs whenever a reviewer is requested on a pull request
on:
pull_request:
types: [review_requested]
jobs:
update-project-status:
runs-on: ubuntu-latest
steps:
- name: Update Project Status to Review Needed
uses: actions/github-script@v7
with:
# Use the PAT stored in repository secrets (has project write access)
github-token: ${{ secrets.PROJECT_TOKEN }}
script: |
// GraphQL query to find the PR's project items
// This fetches all projects the PR is linked to
const query = `
query($owner: String!, $repo: String!, $pr: Int!) {
repository(owner: $owner, name: $repo) {
pullRequest(number: $pr) {
projectItems(first: 10) {
nodes {
id
project {
number
}
}
}
}
}
}
`;
// Execute the query with current repo/PR context
const result = await github.graphql(query, {
owner: context.repo.owner,
repo: context.repo.repo,
pr: context.payload.pull_request.number
});
// Find the project item that belongs to project #8
const projectItems = result.repository.pullRequest.projectItems.nodes;
const projectItem = projectItems.find(item => item.project.number === 8);
// Exit early if PR isn't in project #8
if (!projectItem) {
console.log('PR is not in project #8, skipping...');
return;
}
// GraphQL mutation to update the Status field
const mutation = `
mutation($projectId: ID!, $itemId: ID!, $fieldId: ID!, $optionId: String!) {
updateProjectV2ItemFieldValue(
input: {
projectId: $projectId
itemId: $itemId
fieldId: $fieldId
value: { singleSelectOptionId: $optionId }
}
) {
projectV2Item {
id
}
}
}
`;
// Execute the mutation using IDs stored in repository variables
// PROJECT_ID: The project's unique identifier
// STATUS_FIELD_ID: The "Status" field's unique identifier
// REVIEW_NEEDED_OPTION_ID: The "Review Needed" option's unique identifier
await github.graphql(mutation, {
projectId: "${{ secrets.PROJECT_ID }}",
itemId: projectItem.id,
fieldId: "${{ secrets.STATUS_FIELD_ID }}",
optionId: "${{ secrets.REVIEW_NEEDED_OPTION_ID }}"
});
console.log('Successfully updated project status to Review Needed');

View File

@ -31,7 +31,8 @@
"bc1q39dled8an7enuxtmjql3pk7ny8kzvsxhd924sl"
],
"tags": [
"terrapool.io"
"terrapool.io",
"Validated with Clean Energy"
],
"link": "https://terrapool.io"
},
@ -40,11 +41,12 @@
"name": "Luxor",
"addresses": [
"1MkCDCzHpBsYQivp8MxjY5AkTGG1f2baoe",
"39bitUyBcUu3y3hRTtYprKbTp712t4ZWqK"
"39bitUyBcUu3y3hRTtYprKbTp712t4ZWqK",
"32BfKjhByDSxx3BM5vUkQ3NQq9csZR6nt6"
],
"tags": [
"/LUXOR/",
"Powered by Luxor Tech"
"Luxor Tech"
],
"link": "https://mining.luxor.tech"
},
@ -570,7 +572,8 @@
"addresses": [],
"tags": [
"/NiceHashSolo",
"/NiceHash/"
"/NiceHash/",
"/NiceHashMining/"
],
"link": "https://www.nicehash.com"
},
@ -1159,7 +1162,8 @@
"1DSh7vX6ed2cgTeKPwufV5i4hSi4pp373h",
"1JvXhnHCi6XqcanvrZJ5s2Qiv4tsmm2UMy",
"3L8Ck6bm3sve1vJGKo6Ht2k167YKSKi8TZ",
"bc1qx9t2l3pyny2spqpqlye8svce70nppwtaxwdrp4"
"bc1qx9t2l3pyny2spqpqlye8svce70nppwtaxwdrp4",
"3G7jcEELKh38L6kaSV8K35pTqsh5bgZW2D"
],
"tags": [
"/Binance/",
@ -1570,6 +1574,7 @@
"id": 144,
"name": "wiz",
"addresses": [
"1wizSAYSbuyXbt9d8JV8ytm5acqq2TorC",
"tb1q548z58kqvwyjqwy8vc2ntmg33d7s2wyfv7ukq4"
],
"tags": [
@ -1616,6 +1621,7 @@
"addresses": [],
"tags": [
"Apollo",
"FutureBit",
"/mined by a Solo FutureBit Apollo/"
],
"link": "https://www.futurebit.io"
@ -1708,5 +1714,119 @@
],
"tags": ["/BitFuFu/"],
"link": "https://www.bitfufu.com/pool"
},
{
"id": 158,
"name": "GDPool",
"addresses": [
"1DnPPFQPrfyNTiHPXhDFyqNnW9T62GEhB1"
],
"tags": ["Lucky pool", "GDPool"],
"link": ""
},
{
"id": 159,
"name": "Mining-Dutch",
"addresses": [
"1AfPSq5ZbqBaxU5QAayLQJMcXV8HZt92eq"
],
"tags": ["/Mining-Dutch/"],
"link": "https://www.mining-dutch.nl/"
},
{
"id": 160,
"name": "Public Pool",
"addresses": [],
"tags": [
"Public-Pool",
"Public Pool on Umbrel"
],
"link": "https://web.public-pool.io/"
},
{
"id": 161,
"name": "Mining Squared",
"addresses": [
"3GdjWJdkJhtkxRZ3Ns1LstaoHNMBW8XsvU",
"3AvXzTUat4p6Qf6ZLnRNvB3mDLjp3fNmjJ"
],
"tags": ["MiningSquared", "BSquared Network", "/bsquared/"],
"link": "https://pool.bsquared.network/"
},
{
"id": 162,
"name": "Innopolis Tech",
"addresses": [
"bc1q75t4wewkmf3l9qg097zvtlh05v5pdz6699kv8k"
],
"tags": ["Innopolis", "Innopolis.tech"],
"link": "https://innopolis.tech/"
},
{
"id": 163,
"name": "nymkappa",
"addresses": [
"tb1qdyy39724wqnqqqduv6zxsf56s2ec9lgypxs59h"
],
"tags": ["/@nymkappa/"],
"link": "https://github.com/nymkappa"
},
{
"id": 164,
"name": "BTCLab",
"addresses": [],
"tags": [
"BTCLab",
"BTCLab.dev"
],
"link": "https://btclab.dev/"
},
{
"id": 165,
"name": "Parasite",
"addresses": [],
"tags": ["parasite"],
"link": "https://parasite.space"
},
{
"id": 166,
"name": "RedRock Pool",
"addresses": [
"3554kSaWNnP3B49Xyybert7gmxq2YSnfnx"
],
"tags": ["RedRock"],
"link": "https://redrock.pro/"
},
{
"id": 167,
"name": "Est3lar",
"addresses": [
"34qGNFx6uQv6SzjYPbYVWtjvuy5DSGugt8"
],
"tags": ["/Est3lar/", "est3lar", "Est3lar", "EST3LAR"],
"link": "https://est3lar.io"
},
{
"id": 168,
"name": "Braiins Solo",
"addresses": [],
"tags": ["/braiinssolo/"],
"link": "https://solo.braiins.com"
},
{
"id": 169,
"name": "SoloPool.com",
"addresses": [
"bc1qreaftg3lr53nv84dnxhcvchmswevzlp9tdj2jd"
],
"tags": ["/Mined @ SoloPool.Com/"],
"link": "https://solopool.com"
},
{
"id": 170,
"name": "Noderunners",
"addresses": [],
"tags": ["/Noderunners/"],
"link": "https://pool.noderunners.network"
}
]