Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ _Steps taken to verify the changes_
## Checklist

I have:
* [ ] Structured my commit message to adhere to [Conventional Commits Specification](https://www.conventionalcommits.org/)
* [ ] Added new automated tests for any new functionality
* [ ] Run `npm run build`

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/actions-dev-kit-deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: adk-deploy-docs

on: [workflow_dispatch]
on:
push:
branches:
- main

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/actions-dev-kit-release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

name: adk-release-to-prod

on: [workflow_dispatch]
on:
push:
branches:
- main

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"typescript": "^4.9.5"
},
"scripts": {
"publish-adk": "./scripts/publish-adk-to-npm.sh",
"prebuild": "./cleanup.sh",
"prebuild-all": "./cleanup.sh",
"build": "./build.sh",
Expand Down
2 changes: 2 additions & 0 deletions scripts/publish-adk-to-npm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
echo "Release the ADK"