.github/workflows/ckb-integration-test.yml #537
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
name: CKBIntegrationTest | ||
on: | ||
schedule: | ||
- cron: '0 16 * * *' | ||
jobs: | ||
call-ckb-integration-test: | ||
# Notes | ||
# | ||
# * `workflow_call uses` keyword does not support context expression, so | ||
# `${{ github.repository }}/.github/workflows/ckb-integration-test.yml@main` | ||
# is invalid. | ||
# | ||
# * `workflow_call uses` keyword does not support calling local workflow, so | ||
# `.github/workflows/ckb-integration-test.yml@main` is invalid. | ||
# | ||
# * Target workflow file must locate at `.github/workflows`, so putting a | ||
# reusable workflow in `.github/actions/` is invalid. | ||
# | ||
# * `actions/checkout@v3` inside reusable workflow check-out the current | ||
# repository but not the reusable workflow belong in. | ||
if: ${{ github.repository_owner == 'nervosnetwork' }} | ||
uses: nervosnetwork/ckb-integration-test/.github/workflows/ckb-integration-test.yml@main | ||
Check failure on line 24 in .github/workflows/ckb-integration-test.yml GitHub Actions / .github/workflows/ckb-integration-test.ymlInvalid workflow file
|
||
with: | ||
CKB_GITHUB_REPOSITORY: ${{ github.repository }} | ||
CKB_GITHUB_SHA: develop |