Skip to content

Commit

Permalink
dyk-counts: fix name property, remove ci/cd setup
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthvp committed Apr 18, 2023
1 parent 949a915 commit 031a666
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/restart-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
become sdzerobot bash -c '
cd /data/project/sdzerobot/www/js && npm restart;
cd /data/project/sdzerobot/SDZeroBot/eventstream-router && npm restart;
cd /data/project/sdzerobot/SDZeroBot/dyk-counts && npm restart;
'
host: login.toolforge.org
username: sd
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/toolforge-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ jobs:
echo "Restarting eventstream-router ...";
cd eventstream-router && npm restart && cd -;
fi;
if [[ "$(git diff --name-only HEAD HEAD@{1} | grep -c dyk-counts)" -gt 0 ]]; then
echo "Restarting dyk-counts ...";
cd dyk-counts && npm restart && cd -;
fi;
if [[ "$(git diff --name-only HEAD HEAD@{1} | grep -c "webservice/")" -gt 0 ]]; then
if [[ "$(git diff --name-only HEAD HEAD@{1} | grep -c "webservice/package.json")" -gt 0 ]]; then
echo "Running npm install for SDZeroBot/webservice ...";
Expand Down
2 changes: 1 addition & 1 deletion eventstream-router/routes/dyk-counts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createLocalSSHTunnel } from "../../utils";
import { ENWIKI_DB_HOST, enwikidb } from "../../db";

export default class DykCountsTask extends Route {
name = 'task';
name = 'dyk-counts';

db: enwikidb;

Expand Down

0 comments on commit 031a666

Please sign in to comment.