Skip to content

Commit 00b7dec

Browse files
authored
Merge pull request #5104 from OAI/dev-sync-with-main
dev: sync with main
2 parents f6ea580 + 86457eb commit 00b7dec

File tree

4 files changed

+55
-50
lines changed

4 files changed

+55
-50
lines changed

.github/templates/agenda.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ This agenda gives visibility into discussion topics for the weekly Technical Dev
44

55
Whether attending or not, **anyone can comment on this issue prior to the meeting to suggest topics or to add comments on planned topics or proposals**.
66

7-
Meetings take place over Zoom: [https://zoom.us/j/975841675](https://zoom.us/j/975841675?pwd=SUh4MjRLaEFKNlI3RElpWTdhRDVVUT09), dial-in passcode: 763054
7+
Meetings take place over Zoom: https://zoom-lfx.platform.linuxfoundation.org/meeting/92028872923?password=9ddcd542-4f5b-484a-a254-e00d8a8b15d8
88

99
### Accessibility & Etiquette
10+
1011
* Participants must abide by our [Code-of-Conduct](https://github.com/OAI/OpenAPI-Specification?tab=coc-ov-file).
1112

1213
* Meetings are recorded for future reference, and for those who are not able to attend in-person.

.github/workflows/agenda.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ jobs:
3636
- name: Close old agenda issues
3737
run: gh issue list -l ${{ env.LABEL }} --author "app/github-actions" --json number,title | ConvertFrom-Json | Where-Object { $_.title -like "${{ env.TITLE_PREFIX }}*" -and ([datetime]::UtcNow - [datetime]::Parse([regex]::Replace($_.title.Replace("${{ env.TITLE_PREFIX }}", ""), "\([^)]+\)", ""))) -ge [timespan]::FromDays([int]::Parse("${{ env.POST_MEETING_CLOSE_DURATION_IN_DAYS }}"))} | ForEach-Object { gh issue close $_.number && gh issue unpin $_.number }
3838
shell: pwsh
39+
40+
- name: Unpin any issue that was closed manually
41+
run: gh issue list -l ${{ env.LABEL }} --author "app/github-actions" --json "number,title,isPinned" -s closed | ConvertFrom-Json | Where-Object { $_.isPinned -eq $true -and $_.title -like "${{ env.TITLE_PREFIX }}*" -and ([datetime]::UtcNow - [datetime]::Parse([regex]::Replace($_.title.Replace("${{ env.TITLE_PREFIX }}", ""), "\([^)]+\)", ""))) -ge [timespan]::FromDays([int]::Parse("${{ env.POST_MEETING_CLOSE_DURATION_IN_DAYS }}"))} | ForEach-Object { gh issue unpin $_.number }
42+
shell: pwsh
3943

4044
- name: Create agenda issue
4145
run: |

package-lock.json

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"devDependencies": {
3030
"@hyperjump/json-schema-coverage": "^1.1.2",
3131
"@umbrelladocs/linkspector": "^0.4.7",
32-
"@vitest/coverage-v8": "^4.0.6",
32+
"@vitest/coverage-v8": "^4.0.7",
3333
"c8": "^10.1.3",
3434
"markdownlint-cli2": "^0.18.1",
3535
"vitest": "^4.0.1",

0 commit comments

Comments
 (0)