From b72f36c671fd1fac375a7d1710059a8ba8b64e78 Mon Sep 17 00:00:00 2001 From: Soulou Date: Thu, 17 Apr 2025 17:21:30 +0200 Subject: [PATCH 1/2] test --- .github/workflows/wait.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/wait.yml diff --git a/.github/workflows/wait.yml b/.github/workflows/wait.yml new file mode 100644 index 0000000..2475bd9 --- /dev/null +++ b/.github/workflows/wait.yml @@ -0,0 +1,8 @@ +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Sleep for 30 seconds + uses: jakejarvis/wait-action@master + with: + time: '30s' From a54eddf0cc52084595616f410549bf7289fbde37 Mon Sep 17 00:00:00 2001 From: Soulou Date: Thu, 17 Apr 2025 17:26:54 +0200 Subject: [PATCH 2/2] update wait --- .github/workflows/wait.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/wait.yml b/.github/workflows/wait.yml index 2475bd9..7218bbc 100644 --- a/.github/workflows/wait.yml +++ b/.github/workflows/wait.yml @@ -1,3 +1,6 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] jobs: deploy: runs-on: ubuntu-latest