fix: workflow fixes and vanitygen rebrand

Workflows:
- lock.yml: GH_PAT_BOT → github.token
- chain-endpoints.yml: repo name polkadot-js/apps → pezkuwichain/pezkuwi-apps
- test-nightly.yml: add 120min timeout
- auto-approve.yml: update token and authors
- auto-merge.yml: update token

Dependencies:
- @polkadot/vanitygen → @pezkuwi/vanitygen
This commit is contained in:
github-actions[bot]
2026-01-22 15:42:45 +03:00
parent 9a2dca4b03
commit 0dfd378e2e
7 changed files with 15 additions and 11 deletions
+3 -2
View File
@@ -11,6 +11,7 @@ jobs:
steps:
- uses: jacogr/action-approve@795afd1dd096a2071d7ec98740661af4e853b7da
with:
authors: jacogr, TarikGul
# NOTE: Add your maintainer GitHub usernames here
authors: mamostehp
labels: -auto
token: ${{ secrets.GH_PAT_BOT }}
token: ${{ github.token }}
+1 -1
View File
@@ -13,4 +13,4 @@ jobs:
checks: pr (build:code),pr (build:i18n),pr (build:electron),pr (lint),pr (test)
labels: -auto
strategy: squash
token: ${{ secrets.GH_PAT_BOT }}
token: ${{ github.token }}
+2 -2
View File
@@ -8,7 +8,7 @@ on:
jobs:
endpoints:
if: github.repository == 'polkadot-js/apps'
if: github.repository == 'pezkuwichain/pezkuwi-apps'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
if: ${{ failure() }}
uses: JasonEtco/create-an-issue@e27dddc79c92bc6e4562f268fffa5ed752639abd
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }}
GITHUB_TOKEN: ${{ github.token }}
with:
filename: .github/chain-endpoints.md
update_existing: true
+2 -1
View File
@@ -1,6 +1,7 @@
name: 'Lock Threads'
on:
workflow_dispatch:
schedule:
- cron: '15 2/3 * * *'
@@ -10,7 +11,7 @@ jobs:
steps:
- uses: dessant/lock-threads@c1b35aecc5cdb1a34539d14196df55838bb2f836
with:
github-token: ${{ secrets.GH_PAT_BOT }}
github-token: ${{ github.token }}
issue-inactive-days: '7'
issue-comment: >
This thread has been automatically locked since there has not been
+2
View File
@@ -1,5 +1,6 @@
name: Nightly tests run
on:
workflow_dispatch:
schedule:
- cron: '1 5 * * *'
@@ -11,6 +12,7 @@ jobs:
step: ['test:all']
name: ${{ matrix.step }}
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
+1 -1
View File
@@ -21,7 +21,7 @@
"@pezkuwi/react-components": "^1.0.2-1-x",
"@pezkuwi/react-hooks": "^1.0.2-1-x",
"@pezkuwi/util": "^14.0.11",
"@polkadot/vanitygen": "^0.63.18",
"@pezkuwi/vanitygen": "^1.0.1",
"detect-browser": "^5.3.0",
"file-saver": "^2.0.5"
},
+4 -4
View File
@@ -1,13 +1,13 @@
// Copyright 2017-2026 @pezkuwi/app-accounts authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@polkadot/vanitygen/types';
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@pezkuwi/vanitygen/types';
import type { ActionStatus } from '@pezkuwi/react-components/Status/types';
import type { KeypairType } from '@pezkuwi/util-crypto/types';
import generator from '@polkadot/vanitygen/generator';
import matchRegex from '@polkadot/vanitygen/regex';
import generatorSort from '@polkadot/vanitygen/sort';
import generator from '@pezkuwi/vanitygen/generator';
import matchRegex from '@pezkuwi/vanitygen/regex';
import generatorSort from '@pezkuwi/vanitygen/sort';
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { Button, Dropdown, Input, styled, Table } from '@pezkuwi/react-components';