From 9c64aeec9d20bee0ce73cc9c6c494edc9608cd3a Mon Sep 17 00:00:00 2001 From: Thor Whalen <1906276+thorwhalen@users.noreply.github.com> Date: Tue, 10 Dec 2024 11:37:38 +0100 Subject: [PATCH] fix: ci-diagnosis --- actions/ci-diagnosis/action.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/actions/ci-diagnosis/action.yml b/actions/ci-diagnosis/action.yml index 2b3b4a9..b9b1954 100644 --- a/actions/ci-diagnosis/action.yml +++ b/actions/ci-diagnosis/action.yml @@ -4,15 +4,15 @@ inputs: {} # Define inputs if needed outputs: {} # Define outputs if needed runs: using: "composite" - steps: - # See https://graphite.dev/guides/github-actions-variables - # GITHUB_REPOSITORY: The owner and repository name. For example, octocat/Hello-World. - # GITHUB_REF: The branch or tag ref that triggered the workflow. - # GITHUB_WORKSPACE: The GitHub workspace directory path. - # GITHUB_WORKFLOW: The name of the workflow. - # GITHUB_ACTOR: The name of the person or app that initiated the workflow. - # GITHUB_SHA: The commit SHA that triggered the workflow. + # See https://graphite.dev/guides/github-actions-variables + # GITHUB_REPOSITORY: The owner and repository name. For example, octocat/Hello-World. + # GITHUB_REF: The branch or tag ref that triggered the workflow. + # GITHUB_WORKSPACE: The GitHub workspace directory path. + # GITHUB_WORKFLOW: The name of the workflow. + # GITHUB_ACTOR: The name of the person or app that initiated the workflow. + # GITHUB_SHA: The commit SHA that triggered the workflow. + steps: - name: Print environment variables run: | echo "GITHUB_REPOSITORY: $GITHUB_REPOSITORY" @@ -20,4 +20,6 @@ runs: echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE" echo "GITHUB_WORKFLOW: $GITHUB_WORKFLOW" echo "GITHUB_ACTOR: $GITHUB_ACTOR" - echo "GITHUB_SHA: $GITHUB_SHA" \ No newline at end of file + echo "GITHUB_SHA: $GITHUB_SHA" + shell: bash + \ No newline at end of file