Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
72d8b05
Bump axios from 0.19.0 to 0.19.2
dependabot-preview[bot] Apr 3, 2020
ebd7e8e
[Security] Bump acorn from 7.1.0 to 7.1.1
dependabot-preview[bot] Apr 3, 2020
3863f21
Bump moment-timezone from 0.5.26 to 0.5.28
dependabot-preview[bot] Apr 3, 2020
b8c7bc5
Bump @sentry/node from 5.7.1 to 5.15.4
dependabot-preview[bot] Apr 3, 2020
e5ff394
Bump @slack/bolt from 1.3.0 to 2.0.0
dependabot-preview[bot] Apr 3, 2020
ba59edb
Merge pull request #33 from rpiambulance/dependabot/npm_and_yarn/slac…
ddbruce Apr 4, 2020
d2ec501
Merge branch 'security_fixes' into dependabot/npm_and_yarn/sentry/nod…
ddbruce Apr 4, 2020
e4b0711
Merge pull request #32 from rpiambulance/dependabot/npm_and_yarn/sent…
ddbruce Apr 4, 2020
0eef67f
Merge pull request #31 from rpiambulance/dependabot/npm_and_yarn/mome…
ddbruce Apr 4, 2020
97df21b
Merge pull request #30 from rpiambulance/dependabot/npm_and_yarn/acor…
ddbruce Apr 4, 2020
9138040
Merge branch 'security_fixes' into dependabot/npm_and_yarn/axios-0.19.2
ddbruce Apr 4, 2020
57c6382
Merge pull request #29 from rpiambulance/dependabot/npm_and_yarn/axio…
ddbruce Apr 4, 2020
c190343
Update package.json
ddbruce Apr 4, 2020
66af32c
Merge pull request #35 from rpiambulance/security_fixes
ddbruce Apr 4, 2020
f3bbd53
add enable/disable functionality
ddbruce Apr 4, 2020
c9bbfd5
1.0.5
ddbruce Apr 4, 2020
67a039f
Merge pull request #38 from rpiambulance/dan/feature/enable_disable
ddbruce Apr 4, 2020
9e7c81e
Bump lodash from 4.17.15 to 4.17.19
dependabot[bot] Jul 18, 2020
c85208e
1.0.6
ddbruce Jul 19, 2020
51aacab
Merge pull request #40 from rpiambulance/dependabot/npm_and_yarn/loda…
ddbruce Jul 19, 2020
cc2765b
[Security] Bump node-fetch from 2.6.0 to 2.6.1
dependabot-preview[bot] Sep 11, 2020
fe6b9df
[Security] Bump axios from 0.19.2 to 0.21.1
dependabot-preview[bot] Jan 4, 2021
a3faf47
[Security] Bump lodash from 4.17.19 to 4.17.21
dependabot-preview[bot] May 6, 2021
ee18c90
[Security] Bump glob-parent from 5.1.0 to 5.1.2
dependabot-preview[bot] Jun 8, 2021
a1561a9
Merge pull request #41 from rpiambulance/dependabot/npm_and_yarn/node…
ddbruce Sep 26, 2021
c06ac55
Merge pull request #42 from rpiambulance/dependabot/npm_and_yarn/axio…
ddbruce Sep 26, 2021
4cfad60
Merge pull request #43 from rpiambulance/dependabot/npm_and_yarn/loda…
ddbruce Sep 26, 2021
7fe6d7f
Merge pull request #44 from rpiambulance/dependabot/npm_and_yarn/glob…
ddbruce Sep 26, 2021
1dd74b6
Bump version
ddbruce Sep 26, 2021
90ae199
Update :simple_smile: to match Slack
ddbruce Sep 26, 2021
68a7e5e
Bump version
ddbruce Sep 26, 2021
a6d8fb8
Merge pull request #46 from rpiambulance/dan-patch_emojis
lramos15 Sep 26, 2021
380dddd
Merge branch 'master' into dan-security_patches
ddbruce Sep 26, 2021
6649d27
Versioning
ddbruce Sep 26, 2021
588751b
Merge pull request #45 from rpiambulance/dan-security_patches
lramos15 Sep 27, 2021
74240e0
deploy with GH actions
tceluzza Nov 20, 2022
d968891
deploy dev as well (same as .drone.yml
tceluzza Nov 20, 2022
d9ffcfd
remove .drone.yml
tceluzza Nov 20, 2022
b19bd8d
1.0.10
tceluzza Nov 20, 2022
6c840ef
Merge pull request #56 from rpiambulance/tom/gh-action-deploy
ddbruce Nov 21, 2022
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
31 changes: 0 additions & 31 deletions .drone.yml

This file was deleted.

1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ TZ="America/New_York"
GDRIVE_EMAIL=email@example.com
SENTRY_DSN=
ENVIRONMENT=dev|stage|prod
ENABLE=true
19 changes: 19 additions & 0 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: deploy chorebot-dev

on:
push:
branches:
- dev
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: lp13.rpiambulance.com
username: ${{ secrets.LP13_SSH_USERNAME }}
password: ${{ secrets.LP13_SSH_PASSWORD }}
script: ${{ secrets.LP13_SSH_SCRIPT }} chorebot-dev
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: deploy chorebot

on:
push:
branches:
- master
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: lp13.rpiambulance.com
username: ${{ secrets.LP13_SSH_USERNAME }}
password: ${{ secrets.LP13_SSH_PASSWORD }}
script: ${{ secrets.LP13_SSH_SCRIPT }} chorebot
Loading