diff --git a/.github/workflows/hello-world-manual.yml b/.github/workflows/hello-world-manual.yml index ee6b75ce7..c78bce700 100644 --- a/.github/workflows/hello-world-manual.yml +++ b/.github/workflows/hello-world-manual.yml @@ -33,6 +33,12 @@ jobs: runs-on: ubuntu-latest steps: - id: print-all-variables - name: Print All environment variables + name: Prints All environment variables run: printenv + - id: print-github-variables + name: Prints GitHub variables + run: printenv | grep github + - id: print-github-user + name: Prints the current GitHub user + run: echo "The current user is $GITHUB_USER"