Skip to content

Commit

Permalink
rename to blaze
Browse files Browse the repository at this point in the history
  • Loading branch information
craftycram committed Feb 13, 2024
1 parent 2936cad commit 6c665e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "swarm-hook",
"name": "blaze",
"version": "1.0.0",
"description": "small rest api service to receive ghcr event hooks to update services running in a dockerized portainer instance",
"description": "blazing fast ci/cd. small rest api service to receive ghcr event hooks to update services running in a dockerized portainer instance",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ app.post('/', async (req: Request, res: Response): Promise<void> => {
) as any[]) {
if (
service.deploy?.labels?.find((label: string): boolean =>
label.startsWith('ghcrhook.update'),
label.startsWith('blaze.update'),
) &&
service.image === reqPackageUrl
) {
Expand Down

0 comments on commit 6c665e3

Please sign in to comment.