You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/issue-creation-tool-versions.yml
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ jobs:
28
28
fi
29
29
new_issue_url=$(gh issue create \
30
30
--title "$TITLE" \
31
-
--assignee "$ASSIGNEES" \
32
31
--label "$LABELS" \
33
32
--body "$BODY")
34
33
if [[ $PINNED == true ]]; then
@@ -38,12 +37,11 @@ jobs:
38
37
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
38
GH_REPO: ${{ github.repository }}
40
39
TITLE: Evaluate tool versions
41
-
ASSIGNEES: awesome-embedded-projects
42
40
LABELS: scheduled,tool-versions
43
41
BODY: |
44
42
## Description
45
43
46
-
This issue is automatically created as a gentle reminder to evaluate and update the tool versions for the container image built from this repository.
44
+
This issue is automatically created as a gentle reminder to evaluate and update the tool versions for the container images built from this repository.
47
45
The checklist below describes the steps that should be taken, and checked-off before this issue can be closed.
48
46
Any decisions about purposefully not updating a tool to a newer version should be logged as issue comment.
49
47
The general philosophy is to always include the latest tool versions and the latest [LTS](https://ubuntu.com/about/release-cycle) version of Ubuntu.
@@ -53,12 +51,20 @@ jobs:
53
51
54
52
## Checklist
55
53
54
+
### amp-devcontainer-cpp
55
+
56
56
- [ ] The [ARM GNU](https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads) toolchain is up to date and matches with the GCC version
57
57
- [ ] The [Clang toolchain](https://apt.llvm.org/) is up to date
58
58
- [ ] The [Docker cli](https://download.docker.com/linux/static/stable/) is up to date
59
59
- [ ] [bats-core](https://github.com/bats-core/bats-core), [bats-support](https://github.com/bats-core/bats-support) and [bats-assert](https://github.com/bats-core/bats-assert) are up to date
60
60
- [ ] [Mull](https://github.com/mull-project/mull) is up to date and compatible with the currently installed Clang version
61
61
- [ ] [include-what-you-use](https://github.com/include-what-you-use/include-what-you-use) is up to date and compatible with the currently installed Clang version
62
62
- [ ] [xwin](https://github.com/Jake-Shadle/xwin) is up to date
63
+
64
+
### amp-devcontainer-rust
65
+
66
+
- [ ] The [rust](https://rust-lang.org/) toolchain is up to date
67
+
- [ ] [rust-binstall](https://github.com/cargo-bins/cargo-binstall/releases) is up to date
68
+
- [ ] [bats-core](https://github.com/bats-core/bats-core), [bats-support](https://github.com/bats-core/bats-support) and [bats-assert](https://github.com/bats-core/bats-assert) are up to date
0 commit comments