diff --git a/.github/workflows/nbgl_tests.yml b/.github/workflows/nbgl_tests.yml index c7d11ebd..52bfc991 100644 --- a/.github/workflows/nbgl_tests.yml +++ b/.github/workflows/nbgl_tests.yml @@ -10,13 +10,30 @@ on: workflow_dispatch: jobs: + test-access: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up GitHub CLI + uses: actions/setup-gh@v2 + with: + token: ${{ secrets.CI_BOT_TOKEN }} + + - name: Test access to ledger-secure-sdk repository + run: | + if gh api -X GET /repos/LedgerHQ/app-nbgl-test; then + echo "Access to the repository is successful." + else + echo "Failed to access the repository." + fi run_NBGL_tests: runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }} steps: - - - name: Test access to app-ethereum repository run: | if gh issue list --repo LedgerHQ/app-ethereum; then