mayoralito / wait-action

πŸ’€ Very, very simple (and small) action to sleep for an amount of time β€” 10s, 2m, etc.

Home Page:https://github.com/marketplace/actions/wait-sleep

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action for Sleeping πŸ’€

This is a very, very simple (and small β€” only ~1.2 MB thanks to busybox) action to wait a specified amount of time before moving on in your workflow.

Input follows the Linux sleep syntax for time units: a number followed by s for seconds, m for minutes, etc. Man page for sleep here.

Usage

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
    - name: Sleep for 30 seconds
      uses: jakejarvis/wait-action@master
      with:
        time: '30s'

License

This project is distributed under the MIT license.

About

πŸ’€ Very, very simple (and small) action to sleep for an amount of time β€” 10s, 2m, etc.

https://github.com/marketplace/actions/wait-sleep

License:MIT License


Languages

Language:Dockerfile 82.9%Language:Shell 17.1%