Skip to content

Commit

Permalink
fix: ci-diagnosis
Browse files Browse the repository at this point in the history
  • Loading branch information
thorwhalen committed Dec 10, 2024
1 parent 88d2ee7 commit 9c64aee
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions actions/ci-diagnosis/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,22 @@ 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"
echo "GITHUB_REF: $GITHUB_REF"
echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
echo "GITHUB_WORKFLOW: $GITHUB_WORKFLOW"
echo "GITHUB_ACTOR: $GITHUB_ACTOR"
echo "GITHUB_SHA: $GITHUB_SHA"
echo "GITHUB_SHA: $GITHUB_SHA"
shell: bash

0 comments on commit 9c64aee

Please sign in to comment.