Skip to content

Commit

Permalink
Merge pull request #2960 from microsoftgraph/release/9.4.0
Browse files Browse the repository at this point in the history
Chore: Release 9.4.0
  • Loading branch information
thewahome committed Jan 23, 2024
2 parents 6aac5a5 + c3cd3a1 commit 9ca4183
Show file tree
Hide file tree
Showing 55 changed files with 2,738 additions and 6,403 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.js
Expand Up @@ -51,7 +51,11 @@ module.exports = {
'@typescript-eslint/member-ordering': 'off',
'@typescript-eslint/no-empty-function': 'error',
'@typescript-eslint/no-empty-interface': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-member-access': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
'@typescript-eslint/no-unsafe-assignment': 'warn',
'@typescript-eslint/no-misused-new': 'error',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
Expand Down
10 changes: 10 additions & 0 deletions .github/policies/resourceManagement.yml
Expand Up @@ -94,6 +94,15 @@ configuration:
then:
- addLabel:
label: 'ToTriage'
- if:
- payloadType: Issues
- and:
- isOpen
- isAssignedToSomeone
- isLabeled
then:
- removeLabel:
label: 'ToTriage'
- if:
- payloadType: Issue_Comment
- isAction:
Expand Down Expand Up @@ -152,5 +161,6 @@ configuration:
label: Service issue
- closeIssue
description:
triggerOnOwnActions: true
onFailure:
onSuccess:
3 changes: 3 additions & 0 deletions .github/workflows/linter.yml
Expand Up @@ -97,6 +97,8 @@ jobs:

- name: Build
run: npm run build
env:
CI: false

test:
name: Test
Expand Down Expand Up @@ -179,6 +181,7 @@ jobs:
REACT_APP_NOMINATION_PERIOD: ${{secrets.REACT_APP_NOMINATION_PERIOD}}
REACT_APP_COOLDOWN_PERIOD: ${{secrets.REACT_APP_COOLDOWN_PERIOD}}
REACT_APP_USAGE_TIME: ${{secrets.REACT_APP_USAGE_TIME}}
CI: false
id: builddeploy
uses: Azure/static-web-apps-deploy@v0.0.1-preview
with:
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Expand Up @@ -9,7 +9,7 @@
},
"files.trimTrailingWhitespace": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.format.enable": true,
"editor.formatOnSave": false,
Expand Down

0 comments on commit 9ca4183

Please sign in to comment.