Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbdornas authored Jan 25, 2024
0 parents commit 4ea7ecd
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/add_assignee_to_closed_issue_reusable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This uses a reusable workflow
name: Add assignee to closed issue

on:
issues:
types: [closed]

jobs:
add_assignee_to_closed_issue:
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected]
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
13 changes: 13 additions & 0 deletions .github/workflows/add_project_to_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This uses a reusable workflow
name: Add a project to issue

on:
issues:
types: [opened]

jobs:
do-it:
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected]
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
PROJECT_NUMBER: ${{ secrets.PROJECT_NUMBER }}
12 changes: 12 additions & 0 deletions .github/workflows/set_due_date_to_closed_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Set due date to closed issue

on:
issues:
types: [closed]

jobs:
do-it:
uses: o-futuro-ja-comecou/github-actions-reutilizaveis/.github/workflows/[email protected]
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
PROJECT_NUMBER: ${{ secrets.PROJECT_NUMBER }}
Empty file added .gitignore
Empty file.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# CHANGELOG - Controle de alterações

Documentação das principais alterações deste repositório.
Baseado na filosofia [Mantenha um CHANGELOG](https://keepachangelog.com/pt-BR/1.0.0/).

### [1.0] - 20XX-XX-XX

- Publica primeira versão.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Repositório Template

Repositório criado para simplificar a criação de novos repositórios na organização `o-futuro-ja-comecou`.

# Setup

Visando auxiliar a organização de novos issues no [board to-do](https://github.com/orgs/o-futuro-ja-comecou/projects/2/views/1), após criação do novo repositório utilizando este template, realizar cadastro de secrets necessários ao funcionamento dos actions reutilizáveis para:
- [Adicionar projeto em um novo issue](https://github.com/o-futuro-ja-comecou/github-actions-reutilizaveis#adicionar-projeto-em-um-novo-issue).
- [Adicionar duo date em issues fechados](https://github.com/o-futuro-ja-comecou/github-actions-reutilizaveis#adicionar-duo-date-em-issues-fechados).
- [Adicionar assignee em issues fechados](https://github.com/o-futuro-ja-comecou/github-actions-reutilizaveis#adicionar-assignee-em-issues-fechados).

Para simplificar a comunicação no novo projeto, incluir no repositório criado o [Team Founders](https://github.com/orgs/o-futuro-ja-comecou/teams/founders)[^1], bem como todos os demais colaboradores do mesmo.

[^1]: Conforme demonstrado [neste issue](https://github.com/o-futuro-ja-comecou/repositorio-template/issues/1), já fechado, não foi possível herdar esta configuração do repositório template.

0 comments on commit 4ea7ecd

Please sign in to comment.