This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
Sleeper 4a #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sleeper 4a | |
on: | |
workflow_dispatch: | |
jobs: | |
sleep: | |
runs-on: ubuntu-latest | |
steps: | |
# Runs a set of commands using the runners shell | |
- name: Sleep for a while | |
run: | | |
echo Going to Sleep @ `date -u -Iseconds` | |
sleep 300s | |
echo Waking up .... @ `date -u -Iseconds` |