From c51608276d25efdcdca94afef054df5f148a6aab Mon Sep 17 00:00:00 2001 From: backdev Date: Mon, 1 Dec 2025 12:31:34 +0800 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- job | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 job diff --git a/job b/job new file mode 100644 index 0000000..31a5dfc --- /dev/null +++ b/job @@ -0,0 +1,17 @@ +name: Test Workflow + +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Print environment variables + run: | + echo "GITHUB_REPOSITORY: $GITHUB_REPOSITORY" + echo "GITHUB_SHA: $GITHUB_SHA" + echo "GITHUB_REF: $GITHUB_REF" + echo "GITHUB_ACTOR: $GITHUB_ACTOR" + echo "PATH: $PATH" \ No newline at end of file