-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feature: Highlights the previously selected query (#1006) * Task: upgrade packages flagged by dependabot (#1054) * Task: Fluent upgrade (#1056) * Fix: ProfileType persistence (#1074) * Enhancement: error hints (#1060) * Bug: Persisting request body (#1055) * Fix: Sample queries UI bugs (#1084) * Fix: Disable aria-required children rule (#1080) * Task: Fix failing profile test (#1086) * Enhancement: permissions radio buttons change (#1087) * Task: add English file transfer automation (#1075)
- Loading branch information
Showing
79 changed files
with
1,449 additions
and
1,676 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: English File transfer | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
paths: | ||
- 'src/messages/GE.json' | ||
|
||
jobs: | ||
copy-file: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set current date as env variable | ||
run: echo "today=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV | ||
|
||
- name: Pushes English file | ||
uses: dmnemec/copy_file_to_another_repo_action@main | ||
env: | ||
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} | ||
with: | ||
source_file: 'src/messages/GE.json' | ||
destination_repo: 'microsoftgraph/microsoft-graph-devx-content' | ||
destination_folder: 'messages' | ||
destination_branch: 'dev' | ||
user_email: ${{ secrets.ACTION_EMAIL }} | ||
user_name: ${{ secrets.ACTION_USERNAME }} | ||
commit_message: ${{ env.today }} English file transfer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
{ | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/all.min.js": true | ||
}, | ||
"files.exclude": { | ||
"**/node_modules": true, | ||
"**/.github": true, | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.tslint": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": true, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"eslint.validate": [ | ||
"typescript", | ||
"typescriptreact" | ||
], | ||
} | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/all.min.js": true | ||
}, | ||
"files.exclude": { | ||
"**/node_modules": true, | ||
"**/.github": true | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.tslint": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": true, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"eslint.validate": ["typescript", "typescriptreact"] | ||
} |
Oops, something went wrong.