Skip to content

Commit

Permalink
chore: couple of roadmap workflow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alecthomas committed Feb 12, 2024
1 parent 408de05 commit 47f7569
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/workflow-roadmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 12 additions & 4 deletions FTL.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -22,7 +30,7 @@
},
{
"path": "cmd/ftl",
"name": "cmd/ftl"
"name": "CLI"
},
{
"path": "."
Expand All @@ -44,4 +52,4 @@
"**/*.zip": true,
}
}
}
}
6 changes: 3 additions & 3 deletions scripts/update-workflow-issue
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand All @@ -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)"
Expand Down

0 comments on commit 47f7569

Please sign in to comment.