Test Private Repo Cloning #1
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: Clone Private Repo Test | |
on: | |
pull_request: | |
branches: | |
- develop | |
- dev-[0-9]+.[0-9]+.[0-9]+ | |
push: | |
branches: | |
- develop | |
tags: | |
- v* | |
workflow_dispatch: | |
jobs: | |
cloc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Clone Private Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: NASA-AMMOS/aerie-orbiter-model | |
path: aerie-orbiter-model | |
- name: Run LS in cloned repo | |
run: ls -ltr aerie-orbiter-model |