Skip to content

Commit 9cc9be0

Browse files
authored
infra: Fix package metadata (#37)
- Configure a description and provenance - Set a minimum Node.js version - Enable Renovate to find its release notes https://docs.renovatebot.com/key-concepts/changelogs/#npm-package-maintainers
1 parent fc6cd38 commit 9cc9be0

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

.changeset/wicked-countries-relate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@seek/aws-codedeploy-infra': patch
3+
---
4+
5+
docs: Fix package metadata

.github/workflows/validate.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ on:
77
branches-ignore:
88
- main
99

10+
workflow_run:
11+
branches:
12+
- main
13+
types:
14+
- completed
15+
workflows:
16+
- Release
17+
1018
permissions: {}
1119

1220
jobs:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AWS CodeDeploy Hooks
22

3-
[![Release](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/release.yml/badge.svg)](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/release.yml)
4-
[![Validate](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/validate.yml/badge.svg)](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/validate.yml)
3+
[![Release](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/release.yml)
4+
[![Validate](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/validate.yml/badge.svg?branch=main)](https://github.com/seek-oss/aws-codedeploy-hooks/actions/workflows/validate.yml)
55

66
[AWS CodeDeploy] is a deployment mechanism for ECS services, Lambda functions, and more.
77

packages/infra/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
"name": "@seek/aws-codedeploy-infra",
33
"version": "1.0.1",
44
"private": false,
5+
"description": "AWS CDK infrastructure for AWS CodeDeploy Hooks",
6+
"homepage": "https://github.com/seek-oss/aws-codedeploy-hooks/tree/main/packages/infra#readme",
7+
"bugs": {
8+
"url": "https://github.com/seek-oss/aws-codedeploy-hooks/issues"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+ssh://[email protected]/seek-oss/aws-codedeploy-hooks.git"
13+
},
514
"license": "MIT",
615
"sideEffects": false,
716
"main": "./lib/index.js",
@@ -33,6 +42,12 @@
3342
"isomorphic-git": "1.25.3",
3443
"pino-pretty": "10.3.1"
3544
},
45+
"engines": {
46+
"node": ">=18.12"
47+
},
48+
"publishConfig": {
49+
"provenance": true
50+
},
3651
"skuba": {
3752
"assets": [
3853
"assets/**/*"

0 commit comments

Comments
 (0)