From 6549e6afa3c63200937e676aa5254a68cda0f4c4 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 5 Sep 2023 12:42:55 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7737f84..ed9afea 100644 --- a/README.md +++ b/README.md @@ -56,11 +56,11 @@ 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" - 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 }} ``` From e817d90ef0ff1c5c15fc711bea2b823310165d63 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 5 Sep 2023 13:03:47 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed9afea..5bc07b9 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ 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