diff --git a/.github/workflows/issue-translator.yml b/.github/workflows/issue-translator.yml
new file mode 100644
index 00000000..501e9ebd
--- /dev/null
+++ b/.github/workflows/issue-translator.yml
@@ -0,0 +1,18 @@
+# Will translate any issues opened in foraign language, and add the English translation as a comment 
+name: 'Issue Translator'
+on: 
+  issue_comment: 
+    types: [created]
+  issues: 
+    types: [opened]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: tomsun28/issues-translate-action@v2.5
+        with:
+          BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} 
+          BOT_LOGIN_NAME: liss-bot
+          IS_MODIFY_TITLE: true
+          CUSTOM_BOT_NOTE: It looks like this issue isn't in English - not a problem, here's the translation! 🇬🇧
diff --git a/.github/workflows/security-scanning.yml b/.github/workflows/security-scanning.yml
new file mode 100644
index 00000000..228b2f2e
--- /dev/null
+++ b/.github/workflows/security-scanning.yml
@@ -0,0 +1,19 @@
+# Uses Snyk to check for potential vulnerabilities, then sends results to GH security tab
+name: Check for vulnerabilities with Snyk
+on: push
+jobs:
+  security:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@master
+      - name: Run Snyk to check for vulnerabilities
+        uses: snyk/actions/node@master
+        continue-on-error: true
+        env:
+          SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
+        with:
+          args: --sarif-file-output=snyk.sarif
+      - name: Upload result to GitHub Code Scanning
+        uses: github/codeql-action/upload-sarif@v1
+        with:
+          sarif_file: snyk.sarif
diff --git a/docs/assets/CONTRIBUTORS.svg b/docs/assets/CONTRIBUTORS.svg
index 4a3cf1a8..01a754f2 100644
--- a/docs/assets/CONTRIBUTORS.svg
+++ b/docs/assets/CONTRIBUTORS.svg
@@ -3,10 +3,13 @@
   
   
 
+
+  
+
 
-  
+  
 
 
-  
+  
 
 
\ No newline at end of file
diff --git a/package.json b/package.json
index 1a2fbf4f..c123f9c8 100644
--- a/package.json
+++ b/package.json
@@ -41,6 +41,7 @@
     "vue-toasted": "^1.1.28"
   },
   "devDependencies": {
+    "@architect/sandbox": "^3.7.4",
     "@vue/cli-plugin-babel": "^4.5.12",
     "@vue/cli-plugin-eslint": "^4.5.12",
     "@vue/cli-plugin-pwa": "^4.5.12",