mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-21 22:27:57 +00:00
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:
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user