Skip to content

Commit

Permalink
Merge branch 'main' into windows-tests
Browse files Browse the repository at this point in the history
* main:
  chore(deps): bump github.com/tidwall/gjson from 1.14.4 to 1.15.0 in /modules/vault (testcontainers#1428)
  chore: add a GH action for release drafter (testcontainers#1470)
  chore(deps): bump mkdocs-material from 3.2.0 to 8.2.7 (testcontainers#1468)
  Add global testcontainers header to docs (testcontainers#1308)
  • Loading branch information
mdelapenya committed Aug 9, 2023
2 parents cdf2487 + 86f6a27 commit 2de8a61
Show file tree
Hide file tree
Showing 15 changed files with 931 additions and 29 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# https://github.com/release-drafter/release-drafter
name: Release Drafter

on:
push:
branches:
- main

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@65c5fb495d1e69aa8c08a3317bc44ff8aabe9772 # v5.19.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 changes: 18 additions & 10 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 12 additions & 7 deletions docs/css/extra.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
@import url('https://fonts.googleapis.com/css?family=Rubik');
h1, h2, h3, h4, h5, h6 {
font-family: 'Rubik', sans-serif;

}

[data-md-color-scheme="testcontainers"] {
--md-primary-fg-color: #291A3F;
--md-accent-fg-color: #291A3F;
--md-primary-fg-color: #00bac2;
--md-accent-fg-color: #361E5B;
--md-typeset-a-color: #0C94AA;
--md-primary-fg-color--dark: #291A3F;
--md-default-fg-color--lightest: #F2F4FE;
--md-footer-fg-color: #361E5B;
--md-footer-fg-color--light: #746C8F;
--md-footer-fg-color--lighter: #C3BEDE;
--md-footer-bg-color: #F7F9FD;
--md-footer-bg-color--dark: #F7F9FD;
}

.card-grid {
Expand Down Expand Up @@ -45,14 +50,14 @@ body .card-grid-item:focus {
}

.card-grid-item[href] {
color: var(--md-primary-fg-color);
color: var(--md-primary-fg-color--dark);
background: transparent;
}

.card-grid-item[href]:hover,
.card-grid-item[href]:focus {
background: #F2F4FE;
color: var(--md-primary-fg-color);
color: var(--md-primary-fg-color--dark);
}

.community-callout-wrapper {
Expand Down Expand Up @@ -120,4 +125,4 @@ body .card-grid-item:focus {
.community-callout a img {
height: 1.75em;
}
}
}

0 comments on commit 2de8a61

Please sign in to comment.