Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.
/ http-request Public archive

Custom GitHub action, which sends an HTTP request to the selected endpoint.

Notifications You must be signed in to change notification settings

Ofadiman/http-request

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Http request docker action

This actions sends a http request to selected endpoint.

Inputs

input description
url The HTTP method (get or options) used when sending request.
method The URL to which HTTP request will be sent.
timeout The maximum time (ms) to wait for a successful HTTP request.

Example

uses: ofadiman/http-request@v1
with:
  url: https://jsonplaceholder.typicode.com/todos/1
  timeout: 1000
  method: get