From c4aad5b840dd70f4d81253b36c1794085995b70a Mon Sep 17 00:00:00 2001 From: pandrabox <162582491+pandrabox@users.noreply.github.com> Date: Sun, 1 Sep 2024 16:08:12 +0900 Subject: [PATCH 1/3] Create test.yml --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..eba084f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,9 @@ +name: test + +on: + workflow_dispatch: +jobs: + build: + steps: + run: | + echo "${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}" From 4c21ad171a45a6ffcc1a5148a40429b62514f8aa Mon Sep 17 00:00:00 2001 From: pandrabox <162582491+pandrabox@users.noreply.github.com> Date: Sun, 1 Sep 2024 16:10:02 +0900 Subject: [PATCH 2/3] Update test.yml --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eba084f..fc224d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,14 @@ + name: test on: workflow_dispatch: + jobs: build: + name: Greeting + runs-on: ubuntu-18.04 steps: + - name: Hello World run: | echo "${GITHUB_REPOSITORY#${GITHUB_REPOSITORY_OWNER}/}" From c3dbe636172d8a07d1292b5c34ec2b8e4c288389 Mon Sep 17 00:00:00 2001 From: pandrabox <162582491+pandrabox@users.noreply.github.com> Date: Sun, 1 Sep 2024 16:12:14 +0900 Subject: [PATCH 3/3] Update test.yml --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc224d4..d9b6503 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,8 +6,7 @@ on: jobs: build: - name: Greeting - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Hello World run: |