You are trying to access the default environment variable for the following workflow:
name: Identify the Mistake(s)
on: [push]
jobs:
job1:
runs-on: macos-latest
steps:
- name: step 1
run: |
echo "The job ID is ${{ env.github_job }}"
echo "The name of the workflow is ${{ env.github_workflow }}" Identify the mistake(s) in the workflow.