Skip to content

Commit 20e02e6

Browse files
committed
New test
1 parent 5a77803 commit 20e02e6

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/test3.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Argocd
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
update-argocd:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Git
17+
run: |
18+
git config --global user.email "[email protected]"
19+
git config --global user.name "GitHub Actions"
20+
21+
- name: Clone ArgoCD repository
22+
uses: actions/checkout@v4
23+
with:
24+
repository: grasshopper-labs/argocd
25+
ssh-key: ${{ secrets.ARGOCD_PRIVATE_KEY }}
26+
27+
- name: debug
28+
run: |
29+
ls
File renamed without changes.

0 commit comments

Comments
 (0)