Skip to content

Commit c02f210

Browse files
committed
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Add nullable and generated code annotations devlooped/oss@b2a11fa - Add our implementation of JWT manifest reading and reporting devlooped/oss@a0ae727 - Integrate more seamlessly with the existing workflows devlooped/oss@e732f6a - Minimal docs on consuming devlooped/oss@827a1d1 - Simplify and unify manifest reading implementation devlooped/oss@4fca946 - Add copylocal behavior when merging assemblies devlooped/oss@7cda4a1 - Whitespace and formatting devlooped/oss@d74f511 - Ignore sponsorlink sources in formatting devlooped/oss@f571a42 - Upload binlog artifact on debug runs devlooped/oss@a67ae78 - Set env:gh_token if present as secret devlooped/oss@97ebd18 - Update to checkout@v4 devlooped/oss@5fb1723 - Update dotnet-file.yml with fix to create pull request action devlooped/oss@11a331d - Don't add random wait on manual dotnet-file runs devlooped/oss@7afe350 - Only ignore App folder directly under the root devlooped/oss@02811fa - Add static usings to allow unprefixed ThrowXxxx devlooped/oss@6dfe21f - Add compatibility for non-SDK projects without InitializeSourceControlInformation target devlooped/oss@6e96c59 - Bump create-pr dependency to avoid error with existing PRs devlooped/oss@11a8757 - Only commit markdown files when resolving includes devlooped/oss@2c10a83 # devlooped/.github - Update sponsorlink.jwt devlooped/.github@1e40776 - Fix missing bracket in link devlooped/.github@4d38bd1 - Rename community files devlooped/.github@80e81d2 - Update readme.md devlooped/.github@55d9272 - Update discord invite to devlooped server devlooped/.github@a3ffa5d - Fix typo devlooped/.github@e17634b - Try adding anchor to stats devlooped/.github@390e4a5 - Try profile anchors devlooped/.github@27d7604 - Add SponsorLink section, improve a bit the badges and stats devlooped/.github@d6f9b01 - Update readme.md devlooped/.github@5c0ed40 # devlooped/sponsors - Refresh sponsors devlooped/sponsors@a82ff3a - Refresh sponsors devlooped/sponsors@b8e0779 - Refresh sponsors devlooped/sponsors@3940890 - Refresh sponsors devlooped/sponsors@27b1fa6 - Refresh sponsors devlooped/sponsors@3894772 - Refresh sponsors devlooped/sponsors@b328d6a - Refresh sponsors devlooped/sponsors@8fc98f8 - Refresh sponsors devlooped/sponsors@10242e5 - Refresh sponsors devlooped/sponsors@98f4cfa - Refresh sponsors devlooped/sponsors@422d364 - Refresh sponsors devlooped/sponsors@cec7e85 - Refresh sponsors devlooped/sponsors@8a91355
1 parent cc9fe31 commit c02f210

Some content is hidden

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

55 files changed

+2744
-191
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,6 @@ dotnet_analyzer_diagnostic.category-Style.severity = none
107107

108108
# VSTHRD200: Use "Async" suffix for async methods
109109
dotnet_diagnostic.VSTHRD200.severity = none
110+
111+
[**/*SponsorLink*/**]
112+
generated_code = true

.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/SECURITY.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/SUPPORT.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ env:
2121
VersionLabel: ${{ github.ref }}
2222
PackOnBuild: true
2323
GeneratePackageOnBuild: true
24+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2425

2526
defaults:
2627
run:
@@ -33,7 +34,7 @@ jobs:
3334
matrix: ${{ steps.lookup.outputs.matrix }}
3435
steps:
3536
- name: 🤘 checkout
36-
uses: actions/checkout@v2
37+
uses: actions/checkout@v4
3738

3839
- name: 🔎 lookup
3940
id: lookup
@@ -52,13 +53,13 @@ jobs:
5253
os: ${{ fromJSON(needs.os-matrix.outputs.matrix) }}
5354
steps:
5455
- name: 🤘 checkout
55-
uses: actions/checkout@v2
56+
uses: actions/checkout@v4
5657
with:
5758
submodules: recursive
5859
fetch-depth: 0
5960

6061
- name: 🙏 build
61-
run: dotnet build -m:1
62+
run: dotnet build -m:1 -bl:build.binlog
6263

6364
- name: ⚙ GNU grep
6465
if: matrix.os == 'macOS-latest'
@@ -69,6 +70,13 @@ jobs:
6970
- name: 🧪 test
7071
uses: ./.github/workflows/test
7172

73+
- name: 🐛 logs
74+
uses: actions/upload-artifact@v3
75+
if: runner.debug && always()
76+
with:
77+
name: logs
78+
path: '*.binlog'
79+
7280
# Only push CI package to sleet feed if building on ubuntu (fastest)
7381
- name: 🚀 sleet
7482
env:
@@ -82,7 +90,7 @@ jobs:
8290
runs-on: ubuntu-latest
8391
steps:
8492
- name: 🤘 checkout
85-
uses: actions/checkout@v2
93+
uses: actions/checkout@v4
8694
with:
8795
submodules: recursive
8896
fetch-depth: 0

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
github_token: ${{ secrets.GITHUB_TOKEN }}
1818

1919
- name: 🤘 checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
ref: main

.github/workflows/dotnet-file.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ jobs:
2424
github_token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
- name: 🤘 checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
3030
ref: main
3131
token: ${{ env.GH_TOKEN }}
3232

3333
- name: ⌛ rate
3434
shell: pwsh
35+
if: github.event_name != 'workflow_dispatch'
3536
run: |
3637
# add random sleep since we run on fixed schedule
3738
sleep (get-random -max 60)
@@ -70,7 +71,7 @@ jobs:
7071
validate: false
7172

7273
- name: ✍ pull request
73-
uses: peter-evans/create-pull-request@v4
74+
uses: peter-evans/create-pull-request@v6
7475
with:
7576
base: main
7677
branch: dotnet-file-sync

.github/workflows/includes.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@ jobs:
2121
github_token: ${{ secrets.GITHUB_TOKEN }}
2222

2323
- name: 🤘 checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525
with:
2626
token: ${{ env.GH_TOKEN }}
2727

2828
- name: +Mᐁ includes
2929
uses: devlooped/actions-includes@v1
3030

3131
- name: ✍ pull request
32-
uses: peter-evans/create-pull-request@v4
32+
uses: peter-evans/create-pull-request@v6
3333
with:
34+
add-paths: '**/*.md'
3435
base: main
3536
branch: markdown-includes
3637
delete-branch: true

.github/workflows/publish.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,30 @@ env:
1212
Configuration: Release
1313
PackOnBuild: true
1414
GeneratePackageOnBuild: true
15+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
1516

1617
jobs:
1718
publish:
1819
runs-on: ubuntu-latest
1920
steps:
2021
- name: 🤘 checkout
21-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2223
with:
2324
submodules: recursive
2425
fetch-depth: 0
2526

2627
- name: 🙏 build
27-
run: dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v}
28+
run: dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v} -bl:build.binlog
2829

2930
- name: 🧪 test
3031
uses: ./.github/workflows/test
3132

33+
- name: 🐛 logs
34+
uses: actions/upload-artifact@v3
35+
if: runner.debug && always()
36+
with:
37+
name: logs
38+
path: '*.binlog'
39+
3240
- name: 🚀 nuget
3341
run: dotnet nuget push ./bin/**/*.nupkg -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate

0 commit comments

Comments
 (0)