Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6bb08c2
Merge pull request #325 from DiogoRibeiro7/feat/reserve_branche
github-actions[bot] Sep 18, 2025
7465437
Merge pull request #326 from DiogoRibeiro7/feat/reserve_branche
github-actions[bot] Sep 19, 2025
5640456
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
a1cd27c
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
f69783a
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
e664128
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
9b44bb0
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
09c89a8
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
fdb6e7e
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
7ec35d6
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
87867b4
Update gensurvpy Sphinx documentation
actions-user Oct 14, 2025
e8ab49a
Update unconfoundedr documentation
actions-user Oct 15, 2025
1bc25a6
Update unconfoundedr documentation
actions-user Oct 15, 2025
ba3895d
Update unconfoundedr documentation
actions-user Oct 15, 2025
8738d81
Update unconfoundedr documentation
actions-user Oct 15, 2025
eac205d
Update unconfoundedr documentation
actions-user Oct 15, 2025
922350f
Update unconfoundedr documentation
actions-user Oct 15, 2025
90370f3
Update unconfoundedr documentation
actions-user Oct 15, 2025
0fe1715
Update unconfoundedr documentation
actions-user Oct 15, 2025
3521a1a
Update unconfoundedr documentation
actions-user Oct 15, 2025
4213ac2
Create ROADMAP.md
DiogoRibeiro7 Oct 17, 2025
4eb63bc
Add Dependabot configuration for dependency updates
DiogoRibeiro7 Oct 17, 2025
8b72fb9
chore(deps): bump actions/checkout from 4 to 5 (#327)
dependabot[bot] Oct 17, 2025
56c6be6
chore(deps): bump actions/setup-python from 4 to 6 (#328)
dependabot[bot] Oct 17, 2025
d9744dd
chore(deps): bump rake from 13.2.1 to 13.3.0 (#332)
dependabot[bot] Oct 17, 2025
a7d09ea
chore(deps-dev): bump stylelint from 15.11.0 to 16.25.0 (#333)
dependabot[bot] Oct 17, 2025
3f7a395
chore(deps): bump actions/upload-pages-artifact from 3 to 4 (#329)
dependabot[bot] Oct 17, 2025
41e16e3
chore(deps-dev): bump stylelint-config-standard from 34.0.0 to 39.0.1…
dependabot[bot] Oct 17, 2025
b299f51
chore(deps): bump minimal-mistakes-jekyll from 4.27.1 to 4.27.3 (#330)
dependabot[bot] Oct 17, 2025
8d74d64
fix: fix dependabot
DiogoRibeiro7 Oct 17, 2025
9aa6131
Update gensurvpy Sphinx documentation
actions-user Oct 17, 2025
f9531d6
Update gensurvpy Sphinx documentation
actions-user Oct 17, 2025
2afa6f2
Update gensurvpy Sphinx documentation
actions-user Oct 19, 2025
b94a7d9
Enhance TODO import workflow configuration
DiogoRibeiro7 Oct 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
version: 2
updates:
# JavaScript deps (Yarn or npm) — Dependabot uses the "npm" ecosystem for both.
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
versioning-strategy: increase-if-necessary
assignees:
- "diogoribeiro7"
reviewers:
- "diogoribeiro7"
labels:
- "dependencies"
- "javascript"
# Optional: avoid noisy breaking bumps
# ignore:
# - dependency-name: "*"
# update-types: ["version-update:semver-major"]
# Optional: nice commit prefixes
# commit-message:
# prefix: "deps(npm)"
# prefix-development: "deps(dev-npm)"

# Jekyll (Ruby/Bundler) deps — typical for GitHub Pages sites.
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "monthly"
assignees:
- "diogoribeiro7"
reviewers:
- "diogoribeiro7"
labels:
- "dependencies"
- "jekyll"
- "ruby"
# If you use the 'github-pages' meta-gem (recommended), you can limit updates to it:
# allow:
# - dependency-name: "github-pages"
# Optional: avoid major bumps on gems
# ignore:
# - dependency-name: "*"
# update-types: ["version-update:semver-major"]
# commit-message:
# prefix: "deps(bundler)"

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
assignees:
- "diogoribeiro7"
reviewers:
- "diogoribeiro7"
labels:
- "dependencies"
- "github-actions"
# commit-message:
# prefix: "deps(actions)"

4 changes: 2 additions & 2 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -49,7 +49,7 @@ jobs:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4

# Deployment job
deploy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/republish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -39,7 +39,7 @@ jobs:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4

# Deployment job
deploy:
Expand Down
73 changes: 62 additions & 11 deletions .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,80 @@ on:
workflow_dispatch:
inputs:
importAll:
default: false
required: false
description: Import ALL TODOs from the checked-out ref (use with care)
type: boolean
description: Enable, if you want to import all TODOs. Runs on checked out branch! Only use if you're sure what you are doing.
required: false
default: false
push:
branches:
- master
# Use your default branch. Avoid multiple branches to prevent self-referencing on merges (per action docs).
branches: [ main ]
# Optional: run only when source files change, not docs/CI files.
paths:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.jsx'
- '**/*.py'
- '**/*.rs'
- '**/*.go'
- '**/*.java'
- '**/*.cs'
- '**/*.rb'
- '**/*.php'
- '**/*.sh'
- '!**/*.md'
- '!.github/**'

permissions:
contents: read
issues: write
repository-projects: read
contents: read

concurrency:
group: todo-issue-${{ github.ref }}
cancel-in-progress: true

jobs:
todos:
name: Convert TODOs to issues
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ !github.event.repository.fork }} # don't run on forks

steps:
- uses: actions/checkout@v4
# Pin to a release or a commit SHA for supply-chain safety.
# v5 example (or replace with a specific commit SHA):
- name: Checkout
uses: actions/checkout@v5
with:
# If you plan to run "import all" against history, set fetch-depth: 0
fetch-depth: 1

- name: Run Issue Bot
uses: juulsn/todo-issue@main
with:
excludePattern: '^(node_modules/)'
# Pin to the latest release tag instead of @main
uses: juulsn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} # Replace with your PAT secret
# Use the built-in token; no PAT required.
# Either works; I prefer github.token so you don't need a secret entry.
GITHUB_TOKEN: ${{ github.token }}
with:
# Keep the regex tight; add common big folders/build artifacts to skip.
excludePattern: >-
^(
node_modules/|
dist/|
build/|
.next/|
out/|
coverage/|
.venv/|
venv/|
target/|
vendor/
)
# Optional tweaks (uncomment if you want them)
keywords: '["TODO","FIXME"]'
label: '["todo"]'
autoAssign: false
caseSensitive: false

109 changes: 59 additions & 50 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ GEM
specs:
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
base64 (0.2.0)
bigdecimal (3.1.9)
base64 (0.3.0)
bigdecimal (3.3.1)
colorator (1.1.0)
commonmarker (0.23.11)
concurrent-ruby (1.3.5)
csv (3.3.4)
csv (3.3.5)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
faraday (2.13.1)
faraday (2.14.0)
faraday-net_http (>= 2.0, < 3.5)
json
logger
faraday-net_http (3.4.0)
faraday-net_http (3.4.1)
net-http (>= 0.5.0)
ffi (1.17.2)
ffi (1.17.2-aarch64-linux-gnu)
Expand All @@ -32,25 +32,34 @@ GEM
ffi (1.17.2-x86_64-linux-gnu)
ffi (1.17.2-x86_64-linux-musl)
forwardable-extended (2.6.0)
google-protobuf (4.30.2)
google-protobuf (4.33.0)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-aarch64-linux)
google-protobuf (4.33.0-aarch64-linux-gnu)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-arm64-darwin)
google-protobuf (4.33.0-aarch64-linux-musl)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-x64-mingw-ucrt)
google-protobuf (4.33.0-arm64-darwin)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-x86-linux)
google-protobuf (4.33.0-x64-mingw-ucrt)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-x86_64-darwin)
google-protobuf (4.33.0-x86-linux-gnu)
bigdecimal
rake (>= 13)
google-protobuf (4.30.2-x86_64-linux)
google-protobuf (4.33.0-x86-linux-musl)
bigdecimal
rake (>= 13)
google-protobuf (4.33.0-x86_64-darwin)
bigdecimal
rake (>= 13)
google-protobuf (4.33.0-x86_64-linux-gnu)
bigdecimal
rake (>= 13)
google-protobuf (4.33.0-x86_64-linux-musl)
bigdecimal
rake (>= 13)
http_parser.rb (0.8.0)
Expand Down Expand Up @@ -99,7 +108,7 @@ GEM
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
json (2.12.0)
json (2.15.1)
kramdown (2.5.1)
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
Expand All @@ -112,7 +121,7 @@ GEM
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.7.0)
mercenary (0.3.6)
minimal-mistakes-jekyll (4.27.1)
minimal-mistakes-jekyll (4.27.3)
jekyll (>= 3.7, < 5.0)
jekyll-feed (~> 0.1)
jekyll-gist (~> 1.5)
Expand Down Expand Up @@ -141,56 +150,56 @@ GEM
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (6.0.2)
rake (13.2.1)
rake (13.3.0)
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
redcarpet (3.6.1)
rexml (3.4.2)
rouge (4.5.2)
rexml (3.4.4)
rouge (4.6.1)
rubyzip (2.4.1)
safe_yaml (1.0.5)
sass-embedded (1.88.0)
google-protobuf (~> 4.30)
sass-embedded (1.93.2)
google-protobuf (~> 4.31)
rake (>= 13)
sass-embedded (1.88.0-aarch64-linux-android)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-aarch64-linux-gnu)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-aarch64-linux-musl)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-arm-linux-androideabi)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-arm-linux-gnueabihf)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-arm-linux-musleabihf)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-arm64-darwin)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-riscv64-linux-android)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-riscv64-linux-gnu)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-riscv64-linux-musl)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-x64-mingw-ucrt)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-x86_64-darwin)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-x86_64-linux-android)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-x86_64-linux-gnu)
google-protobuf (~> 4.30)
sass-embedded (1.88.0-x86_64-linux-musl)
google-protobuf (~> 4.30)
sass-embedded (1.93.2-aarch64-linux-android)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-aarch64-linux-gnu)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-aarch64-linux-musl)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-arm-linux-androideabi)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-arm-linux-gnueabihf)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-arm-linux-musleabihf)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-arm64-darwin)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-riscv64-linux-android)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-riscv64-linux-gnu)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-riscv64-linux-musl)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-x64-mingw-ucrt)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-x86_64-darwin)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-x86_64-linux-android)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-x86_64-linux-gnu)
google-protobuf (~> 4.31)
sass-embedded (1.93.2-x86_64-linux-musl)
google-protobuf (~> 4.31)
sawyer (0.9.2)
addressable (>= 2.3.5)
faraday (>= 0.17.3, < 3)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
titlecase (0.1.1)
unicode-display_width (2.6.0)
uri (1.0.3)
uri (1.0.4)
webrick (1.9.1)

PLATFORMS
Expand Down
Loading