Skip to content

Commit f8d81b7

Browse files
committed
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Update cron schedule in triage workflow devlooped/oss@5ee8c91 - Update actions-includes version to v2 devlooped/oss@d571412 - feat: add validation step to check for disallowed package versions in publish workflow devlooped/oss@0ca5fd1
1 parent 89a5be6 commit f8d81b7

4 files changed

Lines changed: 20 additions & 10 deletions

File tree

.github/workflows/includes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
token: ${{ env.PR_TOKEN || github.token }}
3333

3434
- name: +Mᐁ includes
35-
uses: devlooped/actions-includes@v1
35+
uses: devlooped/actions-includes@v2
3636

3737
- name: 📝 OSMF EULA
3838
shell: pwsh

.github/workflows/publish.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
Configuration: Release
1313
PackOnBuild: true
1414
GeneratePackageOnBuild: true
15-
VersionLabel: ${{ github.ref }}
15+
VersionLabel: refs/tags/${{ github.event.release.tag_name }}
1616
GH_TOKEN: ${{ secrets.GH_TOKEN }}
1717
MSBUILDTERMINALLOGGER: auto
1818
SLEET_FEED_URL: https://api.nuget.org/v3/index.json
@@ -44,6 +44,16 @@ jobs:
4444
name: logs
4545
path: '*.binlog'
4646

47+
- name: ✅ validate
48+
shell: pwsh
49+
working-directory: bin
50+
run: |
51+
$invalid = Get-ChildItem -File -Filter "*.42.42*.nupkg"
52+
if ($invalid) {
53+
Write-Error "Found dev/local packages with disallowed 42.42* version prefix:`n$($invalid.Name -join "`n")"
54+
exit 1
55+
}
56+
4757
- name: 🚀 nuget
4858
env:
4959
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

.github/workflows/triage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'triage'
22
on:
33
schedule:
4-
- cron: '42 0 * * *'
4+
- cron: '42 0 1,15 * *'
55

66
workflow_dispatch:
77
# Manual triggering through the GitHub UI, API, or CLI
@@ -104,4 +104,4 @@ jobs:
104104
closeDays: ${{ fromJson(inputs.daysBeforeClose || 30) }}
105105
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity.\n\nHappy Coding!"
106106
pingDays: 80
107-
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."
107+
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."

.netconfig

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
skip
66
[file ".github/workflows/includes.yml"]
77
url = https://github.com/devlooped/oss/blob/main/.github/workflows/includes.yml
8-
sha = 7c1c6e615b5785e0ac9db33cb17343d6c1de16ff
9-
etag = 5e6a10be141ee629201bfad01eae09b5c36a67f541ec7ab411ae400b5d73de1d
8+
sha = d571412f07b0fb3c40023dc906f64906d7ed2b46
9+
etag = ab627107749577bb619b024aff93027359b66b4c3f5a85a36b235e428387cd17
1010
weak
1111
[file ".github/workflows/dotnet-file.yml"]
1212
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
@@ -66,9 +66,9 @@
6666
weak
6767
[file ".github/workflows/publish.yml"]
6868
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
69-
sha = 7f5f9ee9f362f7e8f951d618f8f799033550e687
69+
sha = 0ca5fd11125cd10c51b4433a86917c06ff1ae839
7070

71-
etag = c60411d1aa4e98e7f69e2d34cbccb8eb7e387ec11f6f8e78ee8d8b92122d7025
71+
etag = ac46ffdcef820bbc6bd32378aef25ff79713196e0a5696791abb3a804e06e4d8
7272
weak
7373
[file ".gitignore"]
7474
url = https://github.com/devlooped/oss/blob/main/.gitignore
@@ -112,8 +112,8 @@
112112
skip
113113
[file ".github/workflows/triage.yml"]
114114
url = https://github.com/devlooped/oss/blob/main/.github/workflows/triage.yml
115-
sha = 61a602fc61eedbdae235f01e93657a6219ac2427
116-
etag = 152cd3a559c08da14d1da12a5262ba1d2e0ed6bed6d2eabf5bd209b0c35d8a75
115+
sha = 5ee8c91c8d9e8c0ee739fe1ec877f36c15a4aff0
116+
etag = b19dc36058fc7d385cb5795c9e0860c11b9d027c57cb2a5e6a112e692c6884c1
117117
weak
118118
[file ".github/workflows/dotnet-file-core.yml"]
119119
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file-core.yml

0 commit comments

Comments
 (0)