AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: Based on the workflow configuration below, what github video

Question 1 Be Honest
« Back   Next actions-gh-200 Certification Question »
Answer

Full Certification Question

Based on the workflow configuration below, what four colors will be included in the output? name : my_color_workflow on : workflow_dispatch : env : favorite_color : orange jobs : my_color_1 : runs - on : ubuntu - latest env : favorite_color : blue steps : - name : Set the color id : step_one env : favorite_color : green run : | echo "my_color=$favorite_color" >> "$GITHUB_ENV" - name : echo the color id : step_two run : | echo "🎉 My color is ${{ env.my_color }}" echo "🎉 My favorite color is ${{ env.favorite_color }}" my_color_2 : runs - on : ubuntu - latest steps : - name : echo the color id : step_one run : | echo "🎉 My color is ${{ env.my_color }}" echo "🎉 My favorite color is ${{ env.favorite_color }}"