Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shirosweets authored Mar 20, 2024
0 parents commit 7da9a25
Show file tree
Hide file tree
Showing 12 changed files with 163 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/list_auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
addAssignees: author

addReviewers: true

numberOfReviewers: 1

reviewers:
- shirosweets
- AgustinMDominguez
- diofanto33
- IvanRenison

runOnDraft: true

filterLabels:
exclude:
- wip
18 changes: 18 additions & 0 deletions .github/workflows/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Auto Assign Action'
on:
pull_request:
types: [opened, ready_for_review, labeled, unlabeled]
pull_request_target:
types: [opened, ready_for_review, labeled, unlabeled, reopened, synchronize]

jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/auto-assign-action@v1.2.5
with:
configuration-path: '.github/list_auto_assign.yml'
repo-token: ${{ secrets.WORKFLOW_TOKEN }}
permissions:
contents: read
pull-requests: write
53 changes: 53 additions & 0 deletions .github/workflows/update_submodules.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: 'Update Submodule Action [Child]'
on:
repository_dispatch:
types: [update-submodules-famaf]
schedule:
- cron: '0 0 * * *'
- cron: '0 12 * * *'
# push:
# branches:
# - main
pull_request:
branches:
- main

env:
SHOULD_COMMIT: ''

jobs:
famaftestupdate:
name: Update submodules
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.WORKFLOW_TOKEN }}
submodules: recursive
- name: Update submodules
run: git submodule update --init --recursive --checkout -f --remote

- name: Update status
id: status
run: |
echo $(git status -s)
if [[ $(git status -s) ]]; then
export SHOULD_COMMIT=true
else
export SHOULD_COMMIT=false
fi
echo "SHOULD_COMMIT=$SHOULD_COMMIT" >> $GITHUB_ENV
echo "SHOULD_COMMIT=$SHOULD_COMMIT"
- name: Config git
if: ${{ env.SHOULD_COMMIT == 'true' }}
run: |
git config --global user.name "GitHub Action"
git config --global user.email "noreply@github.com"
source ./parentRepository/scripts/update_w_from_parent.sh
git add .github
git commit -am "[BOT] Update submodules at $(date "+DATE: %Y-%m-%d TIME: %H:%M:%S")"
git push
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "Famaf-Resources-Manager"]
path = Famaf-Resources-Manager
url = git@github.com:FAMAF-resources/Famaf-Resources-Manager.git
1 change: 1 addition & 0 deletions Famaf-Resources-Manager
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Recursos FAMAF

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
50 changes: 50 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
![GitHub Repo Size](https://img.shields.io/github/repo-size/FAMAF-resources/Template-repository)

# Materia - FAMAF - Computacion

> Cuatrimestre
## Correlativas para **cursar**

| Materia | Condición |
| --------------------- | ------------ |
| - | Aprobada |

## Correlativas para **aprobar**

| Materia | Condición |
| --------------------- | ------------ |
| - | Aprobada |

## Es correlativa de:

- Ninguna.

## Clonar el repositorio`

> http
```bash
git clone <repo-url>
```

> ssh
```bash
git clone <repo-url>
```

## Aula virtual

![example](url)

# Contribuciones

Este es un proyecto con fines de facilitar el acceso al material para estudio.

Cualquier persona puede realizar su aporte con apunte, resumen, libro, o actualizacion de este repositoro. Puede ser realizado por una pull request (PR) o comunicarse con los administradores.

# Contributors
<a href="https://github.com/FAMAF-resources/Template-repository/graphs/contributors">
<img src="https://contrib.rocks/image?repo=FAMAF-resources/Template-repository"/>
</a>
Empty file added apuntes/.gitkeep
Empty file.
Empty file added assets/.gitkeep
Empty file.
Empty file added libros/.gitkeep
Empty file.
Empty file added practico/.gitkeep
Empty file.
Empty file added teorico/.gitkeep
Empty file.

0 comments on commit 7da9a25

Please sign in to comment.