mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-25 01:42:00 +03:00
Merge branch 'master' of github.com:Lissy93/dashy into FEATURE/localization
This commit is contained in:
commit
efcc68986d
18
.github/workflows/issue-translator.yml
vendored
Normal file
18
.github/workflows/issue-translator.yml
vendored
Normal file
@ -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! 🇬🇧
|
19
.github/workflows/security-scanning.yml
vendored
Normal file
19
.github/workflows/security-scanning.yml
vendored
Normal file
@ -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
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 818 KiB After Width: | Height: | Size: 838 KiB |
@ -41,6 +41,7 @@
|
|||||||
"vue-toasted": "^1.1.28"
|
"vue-toasted": "^1.1.28"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@architect/sandbox": "^3.7.4",
|
||||||
"@vue/cli-plugin-babel": "^4.5.12",
|
"@vue/cli-plugin-babel": "^4.5.12",
|
||||||
"@vue/cli-plugin-eslint": "^4.5.12",
|
"@vue/cli-plugin-eslint": "^4.5.12",
|
||||||
"@vue/cli-plugin-pwa": "^4.5.12",
|
"@vue/cli-plugin-pwa": "^4.5.12",
|
||||||
|
Loading…
Reference in New Issue
Block a user