From 5348a7a41453b44c48d3f625d3cc25cea8b70264 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Sat, 27 Jan 2024 18:23:13 -0500 Subject: [PATCH] test empty script --- .github/workflows/empty-script.yml | 14 +++++++------- {.github/scripts => scripts}/empty_script.sh | 0 2 files changed, 7 insertions(+), 7 deletions(-) rename {.github/scripts => scripts}/empty_script.sh (100%) diff --git a/.github/workflows/empty-script.yml b/.github/workflows/empty-script.yml index bce8eae2..c69a6996 100644 --- a/.github/workflows/empty-script.yml +++ b/.github/workflows/empty-script.yml @@ -1,3 +1,4 @@ +# https://docs.github.com/en/actions/learn-github-actions/essential-features-of-github-actions name: Empty Workflow on: @@ -10,14 +11,13 @@ on: permissions: read-all jobs: - integration: - name: Empty Workflow + example-job: runs-on: ubuntu-latest - + defaults: + run: + working-directory: ./scripts steps: - name: Check out repository uses: actions/checkout@v4 - - - name: Run empty script - run: ./.github/scripts/empty_script.sh - shell: bash + - name: Run script + run: ./empty_script.sh diff --git a/.github/scripts/empty_script.sh b/scripts/empty_script.sh similarity index 100% rename from .github/scripts/empty_script.sh rename to scripts/empty_script.sh