Skip to content

Commit 341e6d7

Browse files
Merge branch 'actions:main' into fix-golang-windows-example
2 parents 447f0fd + ab4bea2 commit 341e6d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+44417
-48557
lines changed

.eslintrc.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99
"plugin:import/errors",
1010
"plugin:import/warnings",
1111
"plugin:import/typescript",
12-
"plugin:prettier/recommended",
13-
"prettier/@typescript-eslint"
12+
"plugin:prettier/recommended"
1413
],
1514
"plugins": ["@typescript-eslint", "simple-import-sort", "jest"],
1615
"rules": {
1716
"import/first": "error",
1817
"import/newline-after-import": "error",
1918
"import/no-duplicates": "error",
20-
"simple-import-sort/sort": "error",
19+
"simple-import-sort/imports": "error",
2120
"sort-imports": "off"
2221
}
2322
}

.gitattributes

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.licenses/** -diff linguist-generated=true
1+
.licenses/** -diff linguist-generated=true
2+
* text=auto eol=lf

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @actions/artifacts-actions
1+
* @actions/actions-cache
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Close inactive issues
2+
on:
3+
schedule:
4+
- cron: "30 8 * * *"
5+
6+
jobs:
7+
close-issues:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
steps:
13+
- uses: actions/stale@v3
14+
with:
15+
days-before-issue-stale: 365
16+
days-before-issue-close: 5
17+
stale-issue-label: "stale"
18+
stale-issue-message: "This issue is stale because it has been open for 365 days with no activity. Leave a comment to avoid closing this issue in 5 days."
19+
close-issue-message: "This issue was closed because it has been inactive for 5 days since being marked as stale."
20+
days-before-pr-stale: -1
21+
days-before-pr-close: -1
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/workflow.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
strategy:
2121
matrix:
22-
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
22+
os: [ubuntu-latest, windows-latest, macOS-latest]
2323
fail-fast: false
2424
runs-on: ${{ matrix.os }}
2525
steps:
@@ -52,7 +52,7 @@ jobs:
5252
test-save:
5353
strategy:
5454
matrix:
55-
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
55+
os: [ubuntu-latest, windows-latest, macOS-latest]
5656
fail-fast: false
5757
runs-on: ${{ matrix.os }}
5858
steps:
@@ -75,7 +75,7 @@ jobs:
7575
needs: test-save
7676
strategy:
7777
matrix:
78-
os: [ubuntu-latest, ubuntu-16.04, windows-latest, macOS-latest]
78+
os: [ubuntu-latest, windows-latest, macOS-latest]
7979
fail-fast: false
8080
runs-on: ${{ matrix.os }}
8181
steps:

.licenses/npm/@actions/cache.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/core.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/exec.dep.yml

+10-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/glob.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@actions/io.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-auth.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-http.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-lro.dep.yml

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-paging.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/core-tracing-1.0.0-preview.10.dep.yml .licenses/npm/@azure/core-tracing.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/logger.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/ms-rest-js.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.licenses/npm/@azure/storage-blob.dep.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)