generated from FAMAF-resources/Template-repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 60342f4
Showing
12 changed files
with
163 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | ||
with: | ||
configuration-path: '.github/list_auto_assign.yml' | ||
repo-token: ${{ secrets.WORKFLOW_TOKEN }} | ||
permissions: | ||
contents: read | ||
pull-requests: write |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "[email protected]" | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "Famaf-Resources-Manager"] | ||
path = Famaf-Resources-Manager | ||
url = [email protected]:FAMAF-resources/Famaf-Resources-Manager.git |
Submodule Famaf-Resources-Manager
added at
3fcb92
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Empty file.
Empty file.
Empty file.
Empty file.