Skip to content

Commit 43c3596

Browse files
devlooped-botkzu
authored andcommitted
⬆️ Bump files with dotnet-file sync
# devlooped/oss # clarius/pages
1 parent 0bf53d1 commit 43c3596

14 files changed

+159
-136
lines changed

.gitattributes

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,8 @@
1-
# sln, csproj files (and friends) are always CRLF, even on linux
2-
*.sln text eol=crlf
3-
*.proj text eol=crlf
4-
*.csproj text eol=crlf
1+
# normalize by default
2+
* text=auto encoding=UTF-8
3+
*.sh text eol=lf
54

65
# These are windows specific files which we may as well ensure are
76
# always crlf on checkout
87
*.bat text eol=crlf
98
*.cmd text eol=crlf
10-
11-
# Opt in known filetypes to always normalize line endings on checkin
12-
# and always use native endings on checkout
13-
*.c text
14-
*.config text
15-
*.h text
16-
*.cs text
17-
*.md text
18-
*.tt text
19-
*.txt text
20-
21-
# Some must always be checked out as lf so enforce that for those files
22-
# If these are not lf then bash/cygwin on windows will not be able to
23-
# excute the files
24-
*.sh text eol=lf

.github/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ changelog:
88
- invalid
99
- wontfix
1010
- need info
11-
- docs
1211
- techdebt
1312
authors:
1413
- devlooped-bot
@@ -24,6 +23,7 @@ changelog:
2423
- title: 📝 Documentation updates
2524
labels:
2625
- docs
26+
- documentation
2727
- title: 🔨 Other
2828
labels:
2929
- '*'

.github/workflows/changelog.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
usernames-as-github-logins=true
22
issues_wo_labels=true
33
pr_wo_labels=true
4-
exclude-labels=bydesign,dependencies,duplicate,question,invalid,wontfix,need info,docs
4+
exclude-labels=bydesign,dependencies,duplicate,discussion,question,invalid,wontfix,need info,docs
55
enhancement-label=:sparkles: Implemented enhancements:
66
bugs-label=:bug: Fixed bugs:
77
issues-label=:hammer: Other:

.github/workflows/dotnet-file.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
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)

.github/workflows/includes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: ✍ pull request
3232
uses: peter-evans/create-pull-request@v6
3333
with:
34-
add-paths: '**/*.md'
34+
add-paths: '**.md'
3535
base: main
3636
branch: markdown-includes
3737
delete-branch: true

.github/workflows/sponsor.yml

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

.github/workflows/test/action.yml

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

.github/workflows/triage.yml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
name: 'triage'
2+
on:
3+
schedule:
4+
- cron: '42 0 * * *'
5+
6+
workflow_dispatch:
7+
# Manual triggering through the GitHub UI, API, or CLI
8+
inputs:
9+
daysBeforeClose:
10+
description: "Days before closing stale or need info issues"
11+
required: true
12+
default: "30"
13+
daysBeforeStale:
14+
description: "Days before labeling stale"
15+
required: true
16+
default: "180"
17+
daysSinceClose:
18+
description: "Days since close to lock"
19+
required: true
20+
default: "30"
21+
daysSinceUpdate:
22+
description: "Days since update to lock"
23+
required: true
24+
default: "30"
25+
26+
permissions:
27+
actions: write # For managing the operation state cache
28+
issues: write
29+
contents: read
30+
31+
jobs:
32+
stale:
33+
# Do not run on forks
34+
if: github.repository_owner == 'devlooped'
35+
runs-on: ubuntu-latest
36+
steps:
37+
- name: ⌛ rate
38+
shell: pwsh
39+
if: github.event_name != 'workflow_dispatch'
40+
env:
41+
GH_TOKEN: ${{ secrets.DEVLOOPED_TOKEN }}
42+
run: |
43+
# add random sleep since we run on fixed schedule
44+
$wait = get-random -max 180
45+
echo "Waiting random $wait seconds to start"
46+
sleep $wait
47+
# get currently authenticated user rate limit info
48+
$rate = gh api rate_limit | convertfrom-json | select -expandproperty rate
49+
# if we don't have at least 100 requests left, wait until reset
50+
if ($rate.remaining -lt 100) {
51+
$wait = ($rate.reset - (Get-Date (Get-Date).ToUniversalTime() -UFormat %s))
52+
echo "Rate limit remaining is $($rate.remaining), waiting for $($wait / 1000) seconds to reset"
53+
sleep $wait
54+
$rate = gh api rate_limit | convertfrom-json | select -expandproperty rate
55+
echo "Rate limit has reset to $($rate.remaining) requests"
56+
}
57+
58+
- name: ✏️ stale labeler
59+
# pending merge: https://github.com/actions/stale/pull/1176
60+
uses: kzu/stale@c8450312ba97b204bf37545cb249742144d6ca69
61+
with:
62+
ascending: true # Process the oldest issues first
63+
stale-issue-label: 'stale'
64+
stale-issue-message: |
65+
Due to lack of recent activity, this issue has been labeled as 'stale'.
66+
It will be closed if no further activity occurs within ${{ fromJson(inputs.daysBeforeClose || 30 ) }} more days.
67+
Any new comment will remove the label.
68+
close-issue-message: |
69+
This issue will now be closed since it has been labeled 'stale' without activity for ${{ fromJson(inputs.daysBeforeClose || 30 ) }} days.
70+
days-before-stale: ${{ fromJson(inputs.daysBeforeStale || 180) }}
71+
days-before-close: ${{ fromJson(inputs.daysBeforeClose || 30 ) }}
72+
days-before-pr-close: -1 # Do not close PRs labeled as 'stale'
73+
exempt-all-milestones: true
74+
exempt-all-assignees: true
75+
exempt-issue-labels: priority,sponsor,backed
76+
exempt-authors: kzu
77+
78+
- name: 🤘 checkout actions
79+
uses: actions/checkout@v4
80+
with:
81+
repository: 'microsoft/vscode-github-triage-actions'
82+
ref: v42
83+
84+
- name: ⚙ install actions
85+
run: npm install --production
86+
87+
- name: 🔒 issues locker
88+
uses: ./locker
89+
with:
90+
token: ${{ secrets.DEVLOOPED_TOKEN }}
91+
ignoredLabel: priority
92+
daysSinceClose: ${{ fromJson(inputs.daysSinceClose || 30) }}
93+
daysSinceUpdate: ${{ fromJson(inputs.daysSinceUpdate || 30) }}
94+
95+
- name: 🔒 need info closer
96+
uses: ./needs-more-info-closer
97+
with:
98+
token: ${{ secrets.DEVLOOPED_TOKEN }}
99+
label: 'need info'
100+
closeDays: ${{ fromJson(inputs.daysBeforeClose || 30) }}
101+
closeComment: "This issue has been closed automatically because it needs more information and has not had recent activity.\n\nHappy Coding!"
102+
pingDays: 80
103+
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: 23 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
weak
4141
[file ".gitattributes"]
4242
url = https://github.com/devlooped/oss/blob/main/.gitattributes
43-
sha = 0683ee777d7d878d4bf013d7deea352685135a05
44-
etag = 7acb32f5fa6d4ccd9c824605a7c2b8538497f0068c165567807d393dcf4d6bb7
43+
sha = 5f92a68e302bae675b394ef343114139c075993e
44+
etag = 338ba6d92c8d1774363396739c2be4257bfc58026f4b0fe92cb0ae4460e1eff7
4545
weak
4646
[file ".github/dependabot.yml"]
4747
url = https://github.com/devlooped/oss/blob/main/.github/dependabot.yml
@@ -58,8 +58,8 @@
5858
weak
5959
[file ".github/workflows/dotnet-file.yml"]
6060
url = https://github.com/devlooped/oss/blob/main/.github/workflows/dotnet-file.yml
61-
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
62-
etag = 56ca839d5a08ff5995d3356ec573e82bcbb98afe04d2f5d55e871136b3c364c9
61+
sha = 7afe350f7e80a230e922db026d4e1198ba15cae1
62+
etag = 65e9794df6caff779eb989c8f71ddf4d4109b24a75af79e4f8d0fe6ba7bd9702
6363
weak
6464
[file ".github/workflows/publish.yml"]
6565
url = https://github.com/devlooped/oss/blob/main/.github/workflows/publish.yml
@@ -71,8 +71,8 @@
7171
weak
7272
[file "Directory.Build.rsp"]
7373
url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp
74-
sha = ae25fae9d7daf0cb47d537ba870914aa3052f0c9
75-
etag = 6a6c6e1d3895df953abf14c82b0899e3eea75cdcd679f6212dcfea15183d73d6
74+
sha = 0f7f7f7e8a29de9b535676f75fe7c67e629a5e8c
75+
etag = 0ccae83fc51f400bfd7058170bfec7aba11455e24a46a0d7e6a358da6486e255
7676
weak
7777
[file "_config.yml"]
7878
url = https://github.com/devlooped/oss/blob/main/_config.yml
@@ -86,13 +86,13 @@
8686
weak
8787
[file "src/Directory.Build.props"]
8888
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.props
89-
sha = 6e96c592c7b44bfda10404b9f90e4b8fab299249
90-
etag = a4925eb815bbcecc022de8d3245db069573d96ac5ecdf5f0e604f06b5577b01e
89+
sha = b76de49afb376aa48eb172963ed70663b59b31d3
90+
etag = c8b56f3860cc7ccb8773b7bd6189f5c7a6e3a2c27e9104c1ee201fbdc5af9873
9191
weak
9292
[file "src/Directory.Build.targets"]
9393
url = https://github.com/devlooped/oss/blob/main/src/Directory.Build.targets
94-
sha = 0789bf0988ea61b8dfa601d5769e68dc885ffb71
95-
etag = d44a194fd2bc6d564dea8c08245e20856f93ddf155f4acaf8dbfc9f088314737
94+
sha = a8b208093599263b7f2d1fe3854634c588ea5199
95+
etag = 19087699f05396205e6b050d999a43b175bd242f6e8fac86f6df936310178b03
9696
weak
9797
[file "src/kzu.snk"]
9898
url = https://github.com/devlooped/oss/blob/main/src/kzu.snk
@@ -104,18 +104,13 @@
104104
weak
105105
[file "Gemfile"]
106106
url = https://github.com/clarius/pages/blob/main/Gemfile
107-
sha = 565a77f40db0863cb47ceb36f88790259a697c91
108-
etag = 24e482e91192e292b633e3c17c4f095286ffb5a041d299d761b2e6ef99ee7669
109-
weak
110-
[file ".github/workflows/test/action.yml"]
111-
url = https://github.com/devlooped/oss/blob/main/.github/workflows/test/action.yml
112-
sha = 9a1b07589b9bde93bc12528e9325712a32dec418
113-
etag = b54216ac431a83ce5477828d391f02046527e7f6fffd21da1d03324d352c3efb
107+
sha = 90fa16ed0e7300a78a38ee1d23c34a7e875aab27
108+
etag = 3dd7febc8ae6760f19abfe787711f469c288cd803a6f1c545edec34264d48e71
114109
weak
115110
[file ".github/workflows/includes.yml"]
116111
url = https://github.com/devlooped/oss/blob/main/.github/workflows/includes.yml
117-
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
118-
etag = e5ee22e115c925fb85ec931cda3ac811fcc453c03904554fa3f573935b221d34
112+
sha = d152e7437fd0d6f6d9363d23cb3b78c07335ea49
113+
etag = ec40db34f379d0c6d83b2ec15624f330318a172cc4f85b5417c63e86eaf601df
119114
weak
120115
[file ".github/workflows/combine-prs.yml"]
121116
url = https://github.com/devlooped/oss/blob/main/.github/workflows/combine-prs.yml
@@ -124,20 +119,14 @@
124119
weak
125120
[file ".github/release.yml"]
126121
url = https://github.com/devlooped/oss/blob/main/.github/release.yml
127-
sha = 1afd173fe8f81b510c597737b0d271218e81fa73
128-
etag = 482dc2c892fc7ce0cb3a01eb5d9401bee50ddfb067d8cb85873555ce63cf5438
122+
sha = 0c23e24704625cf75b2cb1fdc566cef7e20af313
123+
etag = 310df162242c95ed19ed12e3c96a65f77e558b46dced676ad5255eb12caafe75
129124
weak
130125
[file ".github/workflows/changelog.config"]
131126
url = https://github.com/devlooped/oss/blob/main/.github/workflows/changelog.config
132-
sha = 055a8b7c94b74ae139cce919d60b83976d2a9942
133-
etag = ddb17acb5872e9e69a76f9dec0ca590f25382caa2ccf750df058dcabb674db2b
127+
sha = 08d83cb510732f861416760d37702f9f55bd7f9e
128+
etag = 556a28914eeeae78ca924b1105726cdaa211af365671831887aec81f5f4301b4
134129
weak
135-
[file ".github/workflows/sponsor.yml"]
136-
url = https://github.com/devlooped/oss/blob/main/.github/workflows/sponsor.yml
137-
sha = 5fb172362c767bef7c36478f1a6bdc264723f8f9
138-
etag = 0849ee61af6daee29615f9632173b4e82da5bfa9d78ff28907e9408bd5acde4d
139-
weak
140-
141130
[file "src/Core/Authentication/OAuth"]
142131
url = https://github.com/git-ecosystem/git-credential-manager/tree/v2.5.0/src/shared/Core/Authentication/OAuth
143132
[file "src/Core/Interop/"]
@@ -735,3 +724,8 @@
735724
sha = 94f8d91eacc5ffc5037ab0d96337a531419b4021
736725
etag = 6ee21893c4a201ba834c9749b5518fb25f5702e7c4a29c68d3abd5cdf547301e
737726
weak
727+
[file ".github/workflows/triage.yml"]
728+
url = https://github.com/devlooped/oss/blob/main/.github/workflows/triage.yml
729+
sha = 33000c0c4ab4eb4e0e142fa54515b811a189d55c
730+
etag = 013a47739e348f06891f37c45164478cca149854e6cd5c5158e6f073f852b61a
731+
weak

Directory.Build.rsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
-nr:false
33
-m:1
44
-v:m
5-
-clp:Summary;ForceNoAlign
5+
-clp:Summary;ForceNoAlign

0 commit comments

Comments
 (0)