From b24d70ed24281d2139a2df671a8d9a1bd53087fd Mon Sep 17 00:00:00 2001 From: cactuzhead Date: Sun, 11 May 2025 19:39:22 +0100 Subject: [PATCH] Add files via upload --- docs/ci.yml | 22 ++++++++++++++++++++++ docs/dependabot.yml | 14 ++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 docs/ci.yml create mode 100644 docs/dependabot.yml diff --git a/docs/ci.yml b/docs/ci.yml new file mode 100644 index 0000000..89b1b04 --- /dev/null +++ b/docs/ci.yml @@ -0,0 +1,22 @@ +name: CI + +on: + push: + branches: ["main"] + pull_request: + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Build with Jekyll + run: bundle exec jekyll build diff --git a/docs/dependabot.yml b/docs/dependabot.yml new file mode 100644 index 0000000..dc7a6a4 --- /dev/null +++ b/docs/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: bundler + directory: / + schedule: + interval: daily + allow: + - dependency-type: direct + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily + time: "10:00" + open-pull-requests-limit: 10