From 47f7569c4a6ca29b61e84f5eeb0c5e5def0e5f0c Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Mon, 12 Feb 2024 12:20:14 +1100 Subject: [PATCH] chore: couple of roadmap workflow fixes --- .github/workflows/workflow-roadmap.yml | 3 +++ FTL.code-workspace | 16 ++++++++++++---- scripts/update-workflow-issue | 6 +++--- 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/.github/workflows/workflow-roadmap.yml b/.github/workflows/workflow-roadmap.yml index 107057249..757952104 100644 --- a/.github/workflows/workflow-roadmap.yml +++ b/.github/workflows/workflow-roadmap.yml @@ -13,6 +13,9 @@ on: - Add triage label to new issues - Clear workflow labels once an issue is assigned types: [completed] +concurrency: + group: ${{ github.ref }}-workflow-roadmap + cancel-in-progress: true jobs: update-workflow-issue: runs-on: ubuntu-latest diff --git a/FTL.code-workspace b/FTL.code-workspace index e689ce600..948948d6a 100644 --- a/FTL.code-workspace +++ b/FTL.code-workspace @@ -10,8 +10,16 @@ "path": "examples/online-boutique" }, { - "path": "examples/go", - "name": "examples/go" + "path": "examples/go/echo", + "name": "examples/go/echo" + }, + { + "path": "examples/go/time", + "name": "examples/go/time" + }, + { + "path": "examples/go/httpingress", + "name": "examples/go/httpingress" }, { "path": "examples/kotlin", @@ -22,7 +30,7 @@ }, { "path": "cmd/ftl", - "name": "cmd/ftl" + "name": "CLI" }, { "path": "." @@ -44,4 +52,4 @@ "**/*.zip": true, } } -} +} \ No newline at end of file diff --git a/scripts/update-workflow-issue b/scripts/update-workflow-issue index fe58d13c6..aba44ec2c 100755 --- a/scripts/update-workflow-issue +++ b/scripts/update-workflow-issue @@ -12,7 +12,7 @@ $( test -z "$issues" && exit 0 - echo "### Urgent [👀](https://github.com/TBD54566975/ftl/issues?q=is%3Aissue+is%3Aopen+label%3Aurgent)" + echo "### https://github.com/TBD54566975/ftl/labels/urgent" echo echo "> [!WARNING]" echo "> These issues are urgent and need immediate attention." @@ -34,12 +34,12 @@ $( issues="$(list_issues --label triage)" test -z "$issues" && exit 0 - echo "### Need triage [👀](https://github.com/TBD54566975/ftl/issues?q=is%3Aissue+is%3Aopen+label%3Atriage)" + echo "### https://github.com/TBD54566975/ftl/labels/triage" echo echo "$issues" ) -### Next [👀](https://github.com/TBD54566975/ftl/issues?q=is%3Aissue+is%3Aopen+label%3Anext) +### https://github.com/TBD54566975/ftl/labels/next $( issues="$(list_issues --label next)"