소스 검색

Disable test job for draft pull requests in Argos workflow

codecalm 6 달 전
부모
커밋
1527157bfe
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .github/workflows/argos.yml

+ 2 - 1
.github/workflows/argos.yml

@@ -22,7 +22,8 @@ jobs:
   test:
     timeout-minutes: 60
     runs-on: ubuntu-latest
-    if: github.event.pull_request.draft == false
+    # if: github.event.pull_request.draft == false
+    if: false
     steps:
       - name: Clone repository
         uses: actions/checkout@v4