{"id":15642459,"url":"https://github.com/jakejarvis/wait-action","last_synced_at":"2025-05-01T09:17:13.515Z","repository":{"id":49894122,"uuid":"203996360","full_name":"jakejarvis/wait-action","owner":"jakejarvis","description":"💤 Very, very simple (and small) action to sleep for an amount of time — 10s, 2m, etc.","archived":false,"fork":false,"pushed_at":"2023-08-22T15:08:03.000Z","size":12,"stargazers_count":65,"open_issues_count":2,"forks_count":21,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-01T09:17:08.212Z","etag":null,"topics":["actions","busybox","ci","github-actions","sleep","utilities","wait"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/wait-sleep","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jakejarvis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-08-23T12:42:11.000Z","updated_at":"2024-11-13T23:01:35.000Z","dependencies_parsed_at":"2023-01-04T12:30:18.714Z","dependency_job_id":"69f9a0c9-780a-4ba2-b342-74923cca5f8b","html_url":"https://github.com/jakejarvis/wait-action","commit_stats":{"total_commits":9,"total_committers":3,"mean_commits":3.0,"dds":0.4444444444444444,"last_synced_commit":"919fc193e07906705e5b7a50f90ea9e74d20b2b0"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fwait-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fwait-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fwait-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fwait-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakejarvis","download_url":"https://codeload.github.com/jakejarvis/wait-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251850182,"owners_count":21653978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","busybox","ci","github-actions","sleep","utilities","wait"],"created_at":"2024-10-03T11:56:18.779Z","updated_at":"2025-05-01T09:17:13.486Z","avatar_url":"https://github.com/jakejarvis.png","language":"Dockerfile","funding_links":[],"categories":["Dockerfile"],"sub_categories":[],"readme":"# GitHub Action for Sleeping 💤\n\n## ⚠️ This action is unmaintained.\n\n\u003e This action was published way back in the GitHub Actions beta and is largely abandoned now, mostly because there are much better ways to pause a job than building a whole Docker container on each run (which only works on Linux jobs, too). I highly recommend replacing this action with the following code snippets.\n\u003e\n\u003e On Linux and macOS runners, use [the `sleep` command](https://linux.die.net/man/1/sleep):\n\u003e\n```yaml\n- name: Sleep for 30 seconds\n  run: sleep 30s\n  shell: bash\n```\n\u003e\n\u003e On Windows runners, use [the `Start-Sleep` command](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/start-sleep?view=powershell-7.1):\n\u003e\n```yaml\n- name: Sleep for 30 seconds\n  run: Start-Sleep -s 30\n  shell: powershell\n```\n\n---\n\nThis is a very, very simple (and small — only ~1.2 MB thanks to [`busybox`](https://hub.docker.com/_/busybox)) action to wait a specified amount of time before moving on in your workflow.\n\nInput follows the Linux `sleep` syntax for time units: a number followed by `s` for seconds, `m` for minutes, etc. [Man page for `sleep` here.](https://linux.die.net/man/1/sleep)\n\n## Usage\n\n```yaml\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n    - name: Sleep for 30 seconds\n      uses: jakejarvis/wait-action@master\n      with:\n        time: '30s'\n```\n\n## License\n\nThis project is distributed under the [MIT license](LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakejarvis%2Fwait-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakejarvis%2Fwait-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakejarvis%2Fwait-action/lists"}