From eff73a48f7b2b8e1c11918d727f639f12866f7f5 Mon Sep 17 00:00:00 2001 From: Jasper Date: Wed, 20 Jan 2021 00:21:04 +0100 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 30a3116..620c87e 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,16 @@ Create any kind of HTTP Requests in your GitHub actions to trigger Tools like An Example Usage: ``` jobs: - deployment - - name: Deploy Stage - uses: fjogeleit/http-request-action@master - with: - url: 'https://ansible.io/api/v2/job_templates/84/launch/' - method: 'POST' - username: ${{ secrets.AWX_USER }} - password: ${{ secrets.AWX_PASSWORD }} + deployment: + runs-on: ubuntu-latest + steps: + - name: Deploy Stage + uses: fjogeleit/http-request-action@master + with: + url: 'https://ansible.io/api/v2/job_templates/84/launch/' + method: 'POST' + username: ${{ secrets.AWX_USER }} + password: ${{ secrets.AWX_PASSWORD }} ``` ### Input Arguments