forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69cb3de
commit 5fc248f
Showing
6 changed files
with
177 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
name: Chain endpoints | ||
on: | ||
schedule: | ||
- cron: '45 0/12 * * *' | ||
# name: Chain endpoints | ||
# on: | ||
# schedule: | ||
# - cron: '45 0/12 * * *' | ||
|
||
jobs: | ||
types: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
- name: check | ||
env: | ||
CI_LOG: 123 | ||
run: | | ||
yarn install --immutable | grep -v 'YN0013' | ||
yarn ci:chainEndpoints | ||
# jobs: | ||
# types: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# - name: check | ||
# env: | ||
# CI_LOG: 123 | ||
# run: | | ||
# yarn install --immutable | grep -v 'YN0013' | ||
# yarn ci:chainEndpoints | ||
|
||
- name: issue | ||
if: ${{ failure() }} | ||
uses: JasonEtco/create-an-issue@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }} | ||
with: | ||
filename: .github/chain-endpoints.md | ||
update_existing: true | ||
# - name: issue | ||
# if: ${{ failure() }} | ||
# uses: JasonEtco/create-an-issue@v2 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_PAT_BOT }} | ||
# with: | ||
# filename: .github/chain-endpoints.md | ||
# update_existing: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
name: 'Lock Threads' | ||
# name: 'Lock Threads' | ||
|
||
on: | ||
schedule: | ||
- cron: '15 2/3 * * *' | ||
# on: | ||
# schedule: | ||
# - cron: '15 2/3 * * *' | ||
|
||
jobs: | ||
lock: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/lock-threads@f1a42f0f44eb83361d617a014663e1a76cf282d2 | ||
with: | ||
github-token: ${{ secrets.GH_PAT_BOT }} | ||
issue-lock-inactive-days: '7' | ||
issue-lock-comment: > | ||
This thread has been automatically locked since there has not been | ||
any recent activity after it was closed. Please open a new issue | ||
if you think you have a related problem or query. | ||
pr-lock-inactive-days: '2' | ||
pr-lock-comment: > | ||
This pull request has been automatically locked since there | ||
has not been any recent activity after it was closed. | ||
Please open a new issue for related bugs. | ||
# jobs: | ||
# lock: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: dessant/lock-threads@f1a42f0f44eb83361d617a014663e1a76cf282d2 | ||
# with: | ||
# github-token: ${{ secrets.GH_PAT_BOT }} | ||
# issue-lock-inactive-days: '7' | ||
# issue-lock-comment: > | ||
# This thread has been automatically locked since there has not been | ||
# any recent activity after it was closed. Please open a new issue | ||
# if you think you have a related problem or query. | ||
# pr-lock-inactive-days: '2' | ||
# pr-lock-comment: > | ||
# This pull request has been automatically locked since there | ||
# has not been any recent activity after it was closed. | ||
# Please open a new issue for related bugs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
name: PR | ||
on: [pull_request] | ||
# name: PR | ||
# on: [pull_request] | ||
|
||
jobs: | ||
pr: | ||
strategy: | ||
matrix: | ||
step: ['lint', 'test', 'build:code', 'build:i18n', 'build:electron'] | ||
name: ${{ matrix.step }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
- name: ${{ matrix.step }} | ||
run: | | ||
yarn install --immutable | grep -v 'YN0013' | ||
yarn ${{ matrix.step }} | ||
# jobs: | ||
# pr: | ||
# strategy: | ||
# matrix: | ||
# step: ['lint', 'test', 'build:code', 'build:i18n', 'build:electron'] | ||
# name: ${{ matrix.step }} | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# - name: ${{ matrix.step }} | ||
# run: | | ||
# yarn install --immutable | grep -v 'YN0013' | ||
# yarn ${{ matrix.step }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
name: Master | ||
on: | ||
push: | ||
branches: | ||
- master | ||
# name: Master | ||
# on: | ||
# push: | ||
# branches: | ||
# - master | ||
|
||
jobs: | ||
# publish to gh-pages (& IPFS when a release is detected) | ||
www: | ||
if: "! startsWith(github.event.head_commit.message, '[CI Skip]')" | ||
strategy: | ||
matrix: | ||
step: ['build:release:www'] | ||
name: ${{ matrix.step }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.GH_PAT_BOT }} | ||
- name: ${{ matrix.step }} | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | ||
CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }} | ||
GH_PAGES_SRC: packages/apps/build | ||
GH_PAT: ${{ secrets.GH_PAT_BOT }} | ||
GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GH_PAT_BOT }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }} | ||
PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }} | ||
run: | | ||
yarn install --immutable | grep -v 'YN0013' | ||
yarn ${{ matrix.step }} | ||
# jobs: | ||
# # publish to gh-pages (& IPFS when a release is detected) | ||
# www: | ||
# if: "! startsWith(github.event.head_commit.message, '[CI Skip]')" | ||
# strategy: | ||
# matrix: | ||
# step: ['build:release:www'] | ||
# name: ${{ matrix.step }} | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# with: | ||
# fetch-depth: 0 | ||
# token: ${{ secrets.GH_PAT_BOT }} | ||
# - name: ${{ matrix.step }} | ||
# env: | ||
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
# CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} | ||
# CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }} | ||
# GH_PAGES_SRC: packages/apps/build | ||
# GH_PAT: ${{ secrets.GH_PAT_BOT }} | ||
# GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GH_PAT_BOT }} | ||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
# PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }} | ||
# PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }} | ||
# run: | | ||
# yarn install --immutable | grep -v 'YN0013' | ||
# yarn ${{ matrix.step }} | ||
|
||
# only run on "CI skip", i.e. when the actual version has been bumped to release/stable | ||
docker: | ||
if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')" | ||
name: docker | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
- name: docker | ||
env: | ||
DOCKER_PASS: ${{ secrets.DOCKER_PASS }} | ||
run: | | ||
./docker/build.sh | ||
# # only run on "CI skip", i.e. when the actual version has been bumped to release/stable | ||
# docker: | ||
# if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')" | ||
# name: docker | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# - name: docker | ||
# env: | ||
# DOCKER_PASS: ${{ secrets.DOCKER_PASS }} | ||
# run: | | ||
# ./docker/build.sh | ||
|
||
# only run on "CI skip", i.e. when the actual version has been bumped to release/stable | ||
electron: | ||
if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')" | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
name: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
with: | ||
token: ${{ secrets.GH_PAT_BOT }} | ||
- name: Prepare for app notarization (macOS) | ||
if: startsWith(matrix.os, 'macos') | ||
# Import Apple API key for app notarization on macOS | ||
run: | | ||
mkdir -p ~/private_keys/ | ||
echo '${{ secrets.API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.API_KEY_ID }}.p8 | ||
- name: Build/release Electron app | ||
uses: samuelmeuli/action-electron-builder@v1 | ||
with: | ||
# Base64-encoded code signing certificate for macOS | ||
mac_certs: ${{ secrets.MAC_CERTS }} | ||
# Password for decrypting `mac_certs` | ||
mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }} | ||
# Base64-encoded code signing certificate for Windows | ||
windows_certs: ${{ secrets.WINDOWS_CERTS }} | ||
# Password for decrypting `windows_certs` | ||
windows_certs_password: ${{ secrets.WINDOWS_CERTS_PASSWORD }} | ||
# GitHub token, automatically provided to the action | ||
# (No need to define this secret in the repo settings) | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
build_script_name: build:release:electron | ||
# If the commit is tagged with a version (e.g. "v1.0.0"), | ||
# release the app after building | ||
release: ${{ startsWith(github.ref, 'refs/tags/v') }} | ||
env: | ||
# macOS notarization API key | ||
API_KEY_ID: ${{ secrets.API_KEY_ID }} | ||
API_KEY_ISSUER_ID: ${{ secrets.API_KEY_ISSUER_ID }} | ||
# # only run on "CI skip", i.e. when the actual version has been bumped to release/stable | ||
# electron: | ||
# if: "startsWith(github.event.head_commit.message, '[CI Skip] release/stable')" | ||
# strategy: | ||
# matrix: | ||
# os: [macos-latest, ubuntu-latest, windows-latest] | ||
# runs-on: ${{ matrix.os }} | ||
# name: ${{ matrix.os }} | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# with: | ||
# token: ${{ secrets.GH_PAT_BOT }} | ||
# - name: Prepare for app notarization (macOS) | ||
# if: startsWith(matrix.os, 'macos') | ||
# # Import Apple API key for app notarization on macOS | ||
# run: | | ||
# mkdir -p ~/private_keys/ | ||
# echo '${{ secrets.API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.API_KEY_ID }}.p8 | ||
# - name: Build/release Electron app | ||
# uses: samuelmeuli/action-electron-builder@v1 | ||
# with: | ||
# # Base64-encoded code signing certificate for macOS | ||
# mac_certs: ${{ secrets.MAC_CERTS }} | ||
# # Password for decrypting `mac_certs` | ||
# mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }} | ||
# # Base64-encoded code signing certificate for Windows | ||
# windows_certs: ${{ secrets.WINDOWS_CERTS }} | ||
# # Password for decrypting `windows_certs` | ||
# windows_certs_password: ${{ secrets.WINDOWS_CERTS_PASSWORD }} | ||
# # GitHub token, automatically provided to the action | ||
# # (No need to define this secret in the repo settings) | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# build_script_name: build:release:electron | ||
# # If the commit is tagged with a version (e.g. "v1.0.0"), | ||
# # release the app after building | ||
# release: ${{ startsWith(github.ref, 'refs/tags/v') }} | ||
# env: | ||
# # macOS notarization API key | ||
# API_KEY_ID: ${{ secrets.API_KEY_ID }} | ||
# API_KEY_ISSUER_ID: ${{ secrets.API_KEY_ISSUER_ID }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '50 2/3 * * *' | ||
# name: 'Close stale issues and PRs' | ||
# on: | ||
# schedule: | ||
# - cron: '50 2/3 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@98ed4cb500039dbcccf4bd9bedada4d0187f2757 | ||
with: | ||
repo-token: ${{ secrets.GH_PAT_BOT }} | ||
stale-issue-message: 'This issue has been open for 21 days with no activity and is not labelled as an enhancement. It will be closed in 7 days.' | ||
stale-issue-label: 'stale' | ||
exempt-issue-labels: '-size-l,-size-m,-size-s,-size-xl,-size-xs,[bug],ci,<maybe someday>' | ||
days-before-stale: 21 | ||
days-before-close: 7 | ||
# jobs: | ||
# stale: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/stale@98ed4cb500039dbcccf4bd9bedada4d0187f2757 | ||
# with: | ||
# repo-token: ${{ secrets.GH_PAT_BOT }} | ||
# stale-issue-message: 'This issue has been open for 21 days with no activity and is not labelled as an enhancement. It will be closed in 7 days.' | ||
# stale-issue-label: 'stale' | ||
# exempt-issue-labels: '-size-l,-size-m,-size-s,-size-xl,-size-xs,[bug],ci,<maybe someday>' | ||
# days-before-stale: 21 | ||
# days-before-close: 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
name: Nightly tests run | ||
on: | ||
schedule: | ||
- cron: '1 5 * * *' | ||
# name: Nightly tests run | ||
# on: | ||
# schedule: | ||
# - cron: '1 5 * * *' | ||
|
||
|
||
jobs: | ||
alltests: | ||
strategy: | ||
matrix: | ||
step: ['test:all'] | ||
name: ${{ matrix.step }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
- name: ${{ matrix.step }} | ||
run: | | ||
yarn install --immutable | grep -v 'YN0013' | ||
yarn ${{ matrix.step }} | ||
# jobs: | ||
# alltests: | ||
# strategy: | ||
# matrix: | ||
# step: ['test:all'] | ||
# name: ${{ matrix.step }} | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@7884fcad6b5d53d10323aee724dc68d8b9096a2e | ||
# - name: ${{ matrix.step }} | ||
# run: | | ||
# yarn install --immutable | grep -v 'YN0013' | ||
# yarn ${{ matrix.step }} |
5fc248f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
edge-apps-fork – ./
edge-apps-fork.vercel.app
edge-apps-fork-git-master-edgeware-agency.vercel.app
edge-apps-fork-edgeware-agency.vercel.app
www.edgeware.app
edgeware.app