Skip to content

Commit

Permalink
Test Cloning a Private Repo within the same organization
Browse files Browse the repository at this point in the history
  • Loading branch information
Mythicaeda committed May 13, 2024
1 parent 40ef766 commit d756752
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/private-clone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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:
clone:
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
ref: main
- name: Run LS in cloned repo
run: ls -ltr aerie-orbiter-model

0 comments on commit d756752

Please sign in to comment.