Skip to content

Fix formatting of test3 section in README #12

Fix formatting of test3 section in README

Fix formatting of test3 section in README #12

Workflow file for this run

---
on:
push:
branches:
- main
env:
GLOBAL_ENV_VAR: learning thoughts global
ORG_NAME: xyz limited
jobs:
context-job:
runs-on: ubuntu-latest
env:
JOB_ENV_VAR: learning thoughts job
ORG_NAME: abc limited
steps:
- name: steps example
env:
STEP_VAR: learning thoughts step
run: echo '${{ env.GLOBAL_ENV_VAR }} ${{ env.JOB_ENV_VAR }} ${{ env.STEP_VAR }}'
- name: same environment
env:
ORG_NAME: 123 limited
run: echo '${{ env.ORG_NAME }}'
vars-job:
runs-on: ubuntu-latest
steps:
- name: print vars
run: echo 'group = ${{ vars.GROUP_NAME }} user = ${{ vars.USERNAME }} token = ${{ secrets.TOKEN }}'
- run: printenv