Skip to content

Commit

Permalink
Add name, homepage and license to EOL buildpacks metadata (#439)
Browse files Browse the repository at this point in the history
Amongst other reasons, this now means that `pack builder inspect` will
no longer be missing the name/URL for the EOL buildpack.

Before:

```
Buildpacks:
  ID                                NAME                            VERSION        HOMEPAGE
  heroku/builder-eol-warning        -                               1.0.0          -
...
```

After:

```
Buildpacks:
  ID                                NAME                               VERSION        HOMEPAGE
  heroku/builder-eol-warning        Builder End-of-Life Warning        1.0.0          https://github.com/heroku/cnb-builder-images
...
```

GUS-W-14547289.
  • Loading branch information
edmorley authored Nov 23, 2023
1 parent 9264d49 commit d513950
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions builder-classic-22/end-of-life-buildpack/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ api = "0.9"
[buildpack]
id = "heroku/builder-eol-warning"
version = "1.0.0"
name = "Builder End-of-Life Warning"
homepage = "https://github.com/heroku/cnb-builder-images"

[[buildpack.licenses]]
type = "BSD-3-Clause"

[[stacks]]
id = "*"
5 changes: 5 additions & 0 deletions buildpacks-20/end-of-life-buildpack/buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ api = "0.9"
[buildpack]
id = "heroku/builder-eol-warning"
version = "1.0.0"
name = "Builder End-of-Life Warning"
homepage = "https://github.com/heroku/cnb-builder-images"

[[buildpack.licenses]]
type = "BSD-3-Clause"

[[stacks]]
id = "*"

0 comments on commit d513950

Please sign in to comment.