From 1b874fe35be01f413c443f548464c5262b074d1e Mon Sep 17 00:00:00 2001 From: Shibraj Deb <99308927+Debshibraj123@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:53:25 +0530 Subject: [PATCH] successfully changed the Level-1/code.yml (#69) * successfully changed the Level-1/code.yml * Apply suggestions from code review Co-authored-by: Deniz Onur Duzgun <59659739+dduzgun-security@users.noreply.github.com> --------- Co-authored-by: Joseph Katsioloudes Co-authored-by: Deniz Onur Duzgun <59659739+dduzgun-security@users.noreply.github.com> --- Season-2/Level-1/solution.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Season-2/Level-1/solution.yml b/Season-2/Level-1/solution.yml index 4c34cd6..8be4a24 100644 --- a/Season-2/Level-1/solution.yml +++ b/Season-2/Level-1/solution.yml @@ -1,7 +1,7 @@ # Contribute new levels to the game in 3 simple steps! # Read our Contribution Guideline at github.com/skills/secure-code-game/blob/main/CONTRIBUTING.md -name: Jarvis Gone Wrong +name: CODE - Jarvis Gone Wrong on: push: @@ -14,12 +14,11 @@ jobs: permissions: contents: read steps: - - name: Check out code - uses: actions/checkout@v3 - - name: Check GitHub Status run: | - curl https://www.githubstatus.com/api/v2/status.json + STATUS=$(curl -s https://www.githubstatus.com/api/v2/status.json | jq -r '.status.description') + echo "GitHub Status: $STATUS" + # Solution Explanation