From 160aa802d5f558507e4efd78760b2d6868ad096b Mon Sep 17 00:00:00 2001 From: Andy Augustin Date: Sat, 22 Jul 2023 14:29:52 +0200 Subject: [PATCH] chore: enable again dry run for the ssh test :rocket: --- .github/workflows/test_ssh.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_ssh.yml b/.github/workflows/test_ssh.yml index 119f8254..092f777c 100644 --- a/.github/workflows/test_ssh.yml +++ b/.github/workflows/test_ssh.yml @@ -8,20 +8,17 @@ on: jobs: test-implementation-job: - runs-on: ubuntu-latest steps: # To use this repository's private action, you must check out the repository - - - name: Checkout + - name: Checkout uses: actions/checkout@v3 - - - name: Test action step ssh + - name: Test action step ssh if: github.repository_owner == 'AndreasAugustin' uses: ./ # Uses an action in the root directory with: github_token: ${{ secrets.GITHUB_TOKEN }} source_repo_path: ${{ secrets.SOURCE_REPO_PATH_TEST }} # , should be within secrets source_repo_ssh_private_key: ${{ secrets.SOURCE_REPO_SSH_PRIVATE_KEY }} # contains the private ssh key of the private repository - is_dry_run: false + is_dry_run: true