diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 566790f..e0ca979 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -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 }} diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index dd61ab9..fa3bc95 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -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 }} diff --git a/.github/workflows/chain-endpoints.yml b/.github/workflows/chain-endpoints.yml index 05c6947..496d71f 100644 --- a/.github/workflows/chain-endpoints.yml +++ b/.github/workflows/chain-endpoints.yml @@ -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 diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 5f7400f..978c680 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -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 diff --git a/.github/workflows/test-nightly.yml b/.github/workflows/test-nightly.yml index 01caaea..8f2ad61 100644 --- a/.github/workflows/test-nightly.yml +++ b/.github/workflows/test-nightly.yml @@ -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 diff --git a/packages/page-accounts/package.json b/packages/page-accounts/package.json index b1f9b78..0b0802f 100644 --- a/packages/page-accounts/package.json +++ b/packages/page-accounts/package.json @@ -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" }, diff --git a/packages/page-accounts/src/Vanity/index.tsx b/packages/page-accounts/src/Vanity/index.tsx index 84ba0df..1d3c580 100644 --- a/packages/page-accounts/src/Vanity/index.tsx +++ b/packages/page-accounts/src/Vanity/index.tsx @@ -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';