Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Tevemadar authored Nov 26, 2024
2 parents 59931b5 + 7c48361 commit 77bdb46
Show file tree
Hide file tree
Showing 37 changed files with 3,128 additions and 313 deletions.
117 changes: 0 additions & 117 deletions .github/README.md

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/ebrains.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Mirror to Ebrains

on:
push:
branches: [ master ]

jobs:
to_ebrains:
runs-on: ubuntu-latest
steps:
- name: sync_master
uses: wei/git-sync@v3
with:
source_repo: "Neural-Systems-at-UIO/LocaliZoom"
source_branch: "master"
destination_repo: "https://ghpusher:${{ secrets.EBRAINS_GITLAB_ACCESS_TOKEN }}@gitlab.ebrains.eu/ri/tech-hub/apps/nesys/localizoom.git"
destination_branch: "master"
21 changes: 21 additions & 0 deletions .github/workflows/issue_auto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Issue management

on:
issues:
types: [opened]

jobs:
do-things:
runs-on: ubuntu-latest
steps:
- name: Auto-assign issue
uses: pozil/[email protected]
with:
assignees: Tevemadar
numOfAssignee: 1
allowSelfAssign: true
- name: Add issue to project
uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/Neural-Systems-at-UIO/projects/2
github-token: ${{ secrets.AUTOMATION_TOKEN }}
35 changes: 35 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Read the Docs configuration file for Sphinx projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
# You can also specify other tool versions:
# nodejs: "20"
# rust: "1.70"
# golang: "1.20"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: Docs/conf.py
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
# builder: "dirhtml"
# Fail on all warnings to avoid broken references
# fail_on_warning: true

# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - epub

# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: Docs/requirements.txt
Loading

0 comments on commit 77bdb46

Please sign in to comment.