Skip to content

Commit

Permalink
Create env-info-debug.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Isan-Rivkin authored Aug 5, 2024
1 parent 7b51c86 commit d40e2a4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/env-info-debug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Print GitHub Info

on:
push:
branches:
- main

jobs:
print-info:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Print GitHub Context Information
run: |
echo "Run ID: ${{ github.run_id }}"
echo "Run Number: ${{ github.run_number }}"
echo "Repository: ${{ github.repository }}"
echo "Repository Owner: ${{ github.repository_owner }}"
echo "Actor: ${{ github.actor }}"
echo "Event Name: ${{ github.event_name }}"
echo "SHA: ${{ github.sha }}"
echo "Ref: ${{ github.ref }}"
echo "Workflow: ${{ github.workflow }}"
echo "Action: ${{ github.action }}"
echo "Job: ${{ github.job }}"

0 comments on commit d40e2a4

Please sign in to comment.