From bd6c0b9782107b6b7e086c2b6f7223cd39964f86 Mon Sep 17 00:00:00 2001 From: Heather Baier <44214106+heatherbaier@users.noreply.github.com> Date: Tue, 19 Mar 2024 15:40:16 -0400 Subject: [PATCH] Delete .github/workflows/learn-github-actions.yml --- .github/workflows/learn-github-actions.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/learn-github-actions.yml diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml deleted file mode 100644 index e0d7cbe..0000000 --- a/.github/workflows/learn-github-actions.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: learn-github-actions -run-name: ${{ github.actor }} is learning GitHub Actions -on: [push] -jobs: - run_example_job: - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: print out example job - uses: appleboy/ssh-action@v0.1.10 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - key: ${{ secrets.KEY }} - port: ${{ secrets.PORT }} - command_timeout: 30m - script: | - echo "Nice Job!!!"