Skip to content

Commit 66aedc4

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/cargo/bots/echidnabot/thiserror-2.0.19
# Conflicts: # bots/echidnabot/Cargo.lock
2 parents e7c5358 + 4019f9f commit 66aedc4

14 files changed

Lines changed: 587 additions & 436 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -10,58 +10,26 @@ updates:
1010
patterns:
1111
- "*"
1212

13-
# Rust dependencies
14-
- package-ecosystem: "cargo"
15-
directory: "/robot-repo-automaton"
16-
schedule:
17-
interval: "weekly"
18-
19-
- package-ecosystem: "cargo"
20-
directory: "/shared-context"
21-
schedule:
22-
interval: "weekly"
23-
24-
- package-ecosystem: "cargo"
25-
directory: "/bots/echidnabot"
26-
schedule:
27-
interval: "weekly"
28-
29-
- package-ecosystem: "cargo"
30-
directory: "/bots/glambot"
31-
schedule:
32-
interval: "weekly"
33-
34-
- package-ecosystem: "cargo"
35-
directory: "/bots/rhodibot"
36-
schedule:
37-
interval: "weekly"
38-
39-
- package-ecosystem: "cargo"
40-
directory: "/bots/seambot"
41-
schedule:
42-
interval: "weekly"
43-
44-
- package-ecosystem: "cargo"
45-
directory: "/bots/sustainabot"
46-
schedule:
47-
interval: "weekly"
48-
49-
- package-ecosystem: "cargo"
50-
directory: "/bots/finishingbot"
51-
schedule:
52-
interval: "weekly"
53-
54-
- package-ecosystem: "cargo"
55-
directory: "/bots/accessibilitybot"
56-
schedule:
57-
interval: "weekly"
58-
59-
- package-ecosystem: "cargo"
60-
directory: "/bots/cipherbot"
61-
schedule:
62-
interval: "weekly"
63-
64-
- package-ecosystem: "cargo"
65-
directory: "/bots/panicbot"
66-
schedule:
67-
interval: "weekly"
13+
# Rust dependencies. Keep every Cargo project in one update entry so the
14+
# open-PR limit applies to the fleet as a whole, rather than once per bot.
15+
# Grouping by dependency name updates a shared crate across every affected
16+
# project in one PR instead of opening one PR per Cargo.lock.
17+
- package-ecosystem: "cargo"
18+
directories:
19+
- "/robot-repo-automaton"
20+
- "/shared-context"
21+
- "/bots/echidnabot"
22+
- "/bots/glambot"
23+
- "/bots/rhodibot"
24+
- "/bots/seambot"
25+
- "/bots/sustainabot"
26+
- "/bots/finishingbot"
27+
- "/bots/accessibilitybot"
28+
- "/bots/cipherbot"
29+
- "/bots/panicbot"
30+
schedule:
31+
interval: "weekly"
32+
open-pull-requests-limit: 3
33+
groups:
34+
fleet-dependencies:
35+
group-by: dependency-name

.github/workflows/pages.yml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: GitHub Pages (Ddraig SSG)
2+
on:
3+
push:
4+
branches: [main, master]
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
concurrency:
11+
group: "pages"
12+
cancel-in-progress: false
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 15
17+
container:
18+
image: ghcr.io/stefan-hoeck/idris2-pack@sha256:f0758996a931fb35d9ecb1de273c4d59dabe2a09b433afc7e357f65a08b7e1ff
19+
steps:
20+
- name: Checkout Site
21+
uses: actions/checkout@v7
22+
- name: Checkout Ddraig SSG
23+
uses: actions/checkout@v7
24+
with:
25+
repository: hyperpolymath/ddraig-ssg
26+
path: .ddraig-ssg
27+
- name: Compile Ddraig
28+
working-directory: .ddraig-ssg
29+
run: idris2 Ddraig.idr -o ddraig
30+
- name: Build site
31+
run: |
32+
mkdir -p src
33+
if [ ! -f src/index.md ] && [ -f README.md ]; then
34+
cp README.md src/index.md
35+
elif [ ! -f src/index.md ]; then
36+
echo "# ${GITHUB_REPOSITORY}" > src/index.md
37+
fi
38+
./.ddraig-ssg/build/exec/ddraig build src _site https://hyperpolymath.github.io/${GITHUB_REPOSITORY#*/}
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v5
41+
with:
42+
path: '_site'
43+
deploy:
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
runs-on: ubuntu-latest
48+
timeout-minutes: 15
49+
needs: build
50+
steps:
51+
- name: Deploy to GitHub Pages
52+
id: deployment
53+
uses: actions/deploy-pages@v5

bots/accessibilitybot/Cargo.lock

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

0 commit comments

Comments
 (0)