diff --git a/.github/workflows/chain-endpoints.yml b/.github/workflows/chain-endpoints.yml index b8af28720d43..0ed54ac98379 100644 --- a/.github/workflows/chain-endpoints.yml +++ b/.github/workflows/chain-endpoints.yml @@ -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 diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 42d0f6769af4..40ae5ff300a0 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -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. diff --git a/.github/workflows/pr-any.yml b/.github/workflows/pr-any.yml index 7676ebb4c1ba..d4833eb9d344 100644 --- a/.github/workflows/pr-any.yml +++ b/.github/workflows/pr-any.yml @@ -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 }} diff --git a/.github/workflows/push-master.yml b/.github/workflows/push-master.yml index e629dd152da1..5b6be6ef421e 100644 --- a/.github/workflows/push-master.yml +++ b/.github/workflows/push-master.yml @@ -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 }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8ae958e7204b..445d1b6f83cf 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -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,' - 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,' +# days-before-stale: 21 +# days-before-close: 7 diff --git a/.github/workflows/test-nightly.yml b/.github/workflows/test-nightly.yml index 62f81292971f..6abe40ae614d 100644 --- a/.github/workflows/test-nightly.yml +++ b/.github/workflows/test-nightly.yml @@ -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 }}