From 00079730d1795e2e4e846b378a6c24994d1ada38 Mon Sep 17 00:00:00 2001 From: Rickard Andersson Date: Wed, 6 Aug 2025 11:05:02 +0200 Subject: [PATCH 1/2] Release v0.1.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5cb8e0e..34978a3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "workflow-timer", "description": "Workflow-timer is a GitHub action that measures the duration of the workflow and compares it to the duration of historical runs.", - "version": "0.1.0", + "version": "0.1.1", "author": "", "type": "module", "license": "MIT", From 57746d84625ef9df5459dc73b78a86dd8edd7c0b Mon Sep 17 00:00:00 2001 From: Rickard Andersson Date: Wed, 6 Aug 2025 11:05:31 +0200 Subject: [PATCH 2/2] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index edba15c..abc6c45 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ As the **very last job** in your workflow, add ```yml - name: Time reporter - uses: DeviesDevelopment/workflow-timer@v0.0.4 + uses: DeviesDevelopment/workflow-timer@v0.1.1 ``` Workflow-timer compares the current workflow run with the latest run on another @@ -52,7 +52,7 @@ specify what branch to compare with. ```yml - name: Time reporter - uses: DeviesDevelopment/workflow-timer@v0.0.4 + uses: DeviesDevelopment/workflow-timer@v0.1.1 with: compareBranch: 'your-branch-name' ```