Skip to content

Commit

Permalink
stop tests (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Depth-Hoar authored Dec 28, 2022
1 parent 69cb3de commit 5fc248f
Show file tree
Hide file tree
Showing 6 changed files with 177 additions and 177 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/chain-endpoints.yml
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
42 changes: 21 additions & 21 deletions .github/workflows/lock.yml
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.
30 changes: 15 additions & 15 deletions .github/workflows/pr-any.yml
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 }}
170 changes: 85 additions & 85 deletions .github/workflows/push-master.yml
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 }}
32 changes: 16 additions & 16 deletions .github/workflows/stale.yml
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
34 changes: 17 additions & 17 deletions .github/workflows/test-nightly.yml
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 }}

1 comment on commit 5fc248f

@vercel
Copy link

@vercel vercel bot commented on 5fc248f Dec 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.