From 5a254fcb9691a84a11b55de9f42e31a25121e8ee Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 14 Nov 2023 13:11:27 +0300 Subject: [PATCH] Merge pull request #5 from matifali/v3 (#6) update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7737f84..5bc07b9 100644 --- a/README.md +++ b/README.md @@ -50,17 +50,17 @@ Update coder templates automatically run: echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Get commit title id: commit_title - run: echo "title=$(git log -1 --pretty=%B)" >> $GITHUB_OUTPUT + run: echo "title=$(git log -1 --pretty=%s)" >> $GITHUB_OUTPUT - name: Update Coder Template uses: matifali/update-coder-template@v3 with: - id: "my-template" - dir: "my-template" - url: "https://coder.example.com" - name: "${{ steps.latest_commit.outputs.hash }}" - message: "${{ steps.commit_title.outputs.title }}" + id: my-template + dir: my-template + url: https://coder.example.com + name: ${{ steps.latest_commit.outputs.hash }} + message: ${{ steps.commit_title.outputs.title }} coder_session_token: ${{ secrets.CODER_SESSION_TOKEN }} ``` @@ -84,9 +84,9 @@ Update coder templates automatically - name: Update Coder Template uses: matifali/update-coder-template@v3 with: - id: "my-template" - dir: "my-template" - url: "https://coder.example.com" - activate: "false" + id: my-template + dir: my-template + url: https://coder.example.com + activate: false coder_session_token: ${{ secrets.CODER_SESSION_TOKEN }} ```