Skip to content

Commit f949ef5

Browse files
authored
Merge branch 'main' into models
Signed-off-by: Carol Chen <[email protected]>
2 parents e1fa03f + da851b6 commit f949ef5

31 files changed

+1348
-695
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Since dependabot cannot update workflows using docker,
22
# we use this indirection since dependabot can update this file.
3-
FROM rhysd/actionlint:1.7.1@sha256:435ecdb63b1169e80ca3e136290072548c07fc4d76a044cf5541021712f8f344
3+
FROM rhysd/actionlint:1.7.7@sha256:887a259a5a534f3c4f36cb02dca341673c6089431057242cdc931e9f133147e9

.github/workflows/actionlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: "Harden Runner"
33-
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
33+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
3434
with:
3535
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3636

3737
- name: "Checkout"
38-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
38+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
with:
4040
fetch-depth: 0
4141

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: "Harden Runner"
36-
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
36+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
3737
with:
3838
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3939
- name: "Checkout"
40-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
fetch-depth: 0
4343
- name: "Check Markdown documents"
44-
uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 # v16.0.0
44+
uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19.1.0
4545
with:
4646
globs: '**/*.md'

.github/workflows/periodic-maintainers-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ jobs:
2222
pull-requests: write
2323
steps:
2424
- name: "Harden Runner"
25-
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
25+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
2626
with:
2727
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
2828

2929
- name: "Checkout"
30-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
with:
3232
fetch-depth: 0
3333

3434
- name: "Setup Python"
35-
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
35+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
3636
with:
3737
python-version: "3.11"
3838

@@ -61,7 +61,7 @@ jobs:
6161
git commit -s -m "MAINTAINERS.md: automated update"
6262
git push -u -f origin maintainers-update
6363
if ! (gh pr list --head maintainers-update --json number | grep -q "number") ; then
64-
gh pr create --title "MAINTAINERS.md: automated update" --body "Automated update of MAINTAINERS.md"
64+
gh pr create --title "MAINTAINERS.md: automated update" --body "Automated update of MAINTAINERS.md" --reviewer instructlab/community-maintainers
6565
fi
6666
env:
6767
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/spellcheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: "Harden Runner"
35-
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
35+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
3636
with:
3737
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3838

3939
- name: "Checkout"
40-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
fetch-depth: 0
4343

4444
- name: Spellcheck
45-
uses: rojopolis/spellcheck-github-actions@a0fba0ca8b9e552d4241ea5ccfaa4ca4162622d0 # v0.41.0
45+
uses: rojopolis/spellcheck-github-actions@e7d2b8d65030d75d79a50c069a6ef30522e534eb # v0.46.0

.github/workflows/stale_bot.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
name: 'Close stale issues and PRs'
4+
5+
on:
6+
schedule:
7+
- cron: '30 1 * * *'
8+
9+
env:
10+
LC_ALL: en_US.UTF-8
11+
12+
defaults:
13+
run:
14+
shell: bash
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
stale:
21+
permissions:
22+
issues: write
23+
pull-requests: write
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: "Harden Runner"
27+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
28+
with:
29+
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
30+
31+
- name: "Stale Action"
32+
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
33+
with:
34+
stale-issue-label: 'stale'
35+
stale-issue-message: >
36+
This issue has been automatically marked as stale because it has not had activity within 60 days.
37+
It will be automatically closed if no further activity occurs within 30 days.
38+
close-issue-message: >
39+
This issue has been automatically closed due to inactivity. Please feel free to reopen if you feel it is still relevant!
40+
days-before-issue-stale: 60
41+
days-before-issue-close: 30
42+
exempt-issue-labels: 'ongoing'
43+
stale-pr-label: 'stale'
44+
stale-pr-message: >
45+
This pull request has been automatically marked as stale because it has not had activity within 60 days.
46+
It will be automatically closed if no further activity occurs within 30 days.
47+
close-pr-message: >
48+
This pull request has been automatically closed due to inactivity. Please feel free to reopen if you intend to continue working on it!
49+
days-before-pr-stale: 60
50+
days-before-pr-close: 30

.markdownlint-cli2.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# SPDX-License-Identifier: Apache-2.0
22

33
config:
4-
line-length: false
4+
line-length:
5+
line_length: 120
6+
tables: false
7+
code_blocks: false
58
no-emphasis-as-header: false
69
first-line-heading: false
710
code-block-style: false

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 120,
3+
"proseWrap": "always"
4+
}

.spellcheck-en-custom.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ weinberg
244244
Wikimedia
245245
wikimultihop
246246
wordmarks
247+
workspaces
247248
workstreams
248249
WSL
249250
xukai

CODEOWNERS

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

0 commit comments

Comments
 (0)