Skip to content

Commit c3cd5e1

Browse files
ruhul-csMohammadRuhulAminroot
authored
Accessing contextual information about workflow runs (#42)
* Add unit testing after CI Check * Test script error solve * Add docker image testing script * Add network flag in test workflow * Remove Entrypoint and add CMD in Dockerfile * Add notificaiton system using webhook when any push happens on github branch * Remove notification connectivity with webhook * Add dotenv module in project * Add 2 more docker service on different port * Add nginx.conf file for implementing reverse proxy server * Change port number of nginx.conf file * Update github file with instructions * Add nginx.conf file for reverse proxy * Integrate nginx as reverse proxy server in container * Execute eslint to fix codebase issue * Add second job in workflow-rnd.yaml file * Add latest code form a remote repo in local env * Update workflow-rnd.yaml code * Update workflow-rnd.yaml code * Remove second Job * Create workflow-rnd.yaml * Add workflow trigger documentation * Add seperate workflow for unit testing * Add seperate workflow for unit testing * Add seperate workflow for unit testing * Add seperate workflow for unit testing * Add command npm test * Add command npm test * Update chain-workflow.yaml with job-notify * Update chain-workflow.yaml * Update chain-workflow.yaml * Print github meta data * Fix the workflow file * Add context meta data * Change job name * Refix the expression * Add closing bracket in the expression * Add jobs, matrix in context-display-workflow * Remove matrix from context-display-workflow file --------- Co-authored-by: MohammadRuhulAmin <[email protected]> Co-authored-by: Mohammad Ruhul Amin <[email protected]> Co-authored-by: root <root@HP>
1 parent ad8e0ec commit c3cd5e1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: meta data context display
2+
on: workflow_dispatch
3+
jobs:
4+
display-context-info:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Print context meta data
8+
run: echo "${{ toJSON(github) }}"
9+
- name: "Print env secrect keys"
10+
run: echo "This is secrect key"
11+
- name: "Print job"
12+
run: echo "${{ toJSON(job) }}"

0 commit comments

Comments
 (0)