├── .github ├── CODEOWNERS ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── criar-issue-tarefa-2.yml │ ├── criar_issue_tarefa-1.yml │ ├── template_tarefa1.md │ └── template_tarefa2.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── caos ├── @AfonsoDglan │ └── AfonsoDglan.txt ├── @Joaolpridolficarvalho │ └── Joaolpridolficarvalho.txt ├── @Larissa-Moreno │ └── Larissa-Moreno.txt ├── @antoniamaia │ └── antoniamaia.txt ├── @camilamaia │ └── camilamaia.txt ├── @daironromano │ └── daironromano.txt ├── @empthinking │ └── empthinking.txt ├── @gmferratti │ └── gmferratti.txt ├── @laistdomiciano │ └── laistdomiciano.txt ├── @lparaujo │ └── lparaujo.txt ├── @marceujardim │ └── marceujardim.txt ├── @micheleguims │ └── micheleguims.txt ├── @nativalmeida │ └── nativalmeida.txt ├── @soodre │ └── soodre.txt ├── @verdinhx │ └── verdinhx.txt ├── @vitoriarl │ └── vitoriarl.txt ├── @wedleycso │ └── wedleycso.txt └── O_JOGO_DO_TIGRINHO_ME_DEU.md ├── docs ├── tarefa1.md └── tarefa2.md └── valnasio.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [cumbucadev, camilamaia] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/criar-issue-tarefa-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/workflows/criar-issue-tarefa-2.yml -------------------------------------------------------------------------------- /.github/workflows/criar_issue_tarefa-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/workflows/criar_issue_tarefa-1.yml -------------------------------------------------------------------------------- /.github/workflows/template_tarefa1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/workflows/template_tarefa1.md -------------------------------------------------------------------------------- /.github/workflows/template_tarefa2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.github/workflows/template_tarefa2.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/README.md -------------------------------------------------------------------------------- /caos/@AfonsoDglan/AfonsoDglan.txt: -------------------------------------------------------------------------------- 1 | Hello World, My name is Afonso! 2 | Até logo. -------------------------------------------------------------------------------- /caos/@Joaolpridolficarvalho/Joaolpridolficarvalho.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Até logo! 3 | -------------------------------------------------------------------------------- /caos/@Larissa-Moreno/Larissa-Moreno.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus 3 | -------------------------------------------------------------------------------- /caos/@antoniamaia/antoniamaia.txt: -------------------------------------------------------------------------------- 1 | olá -------------------------------------------------------------------------------- /caos/@camilamaia/camilamaia.txt: -------------------------------------------------------------------------------- 1 | olar 2 | tchau 3 | -------------------------------------------------------------------------------- /caos/@daironromano/daironromano.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus. -------------------------------------------------------------------------------- /caos/@empthinking/empthinking.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus 3 | -------------------------------------------------------------------------------- /caos/@gmferratti/gmferratti.txt: -------------------------------------------------------------------------------- 1 | Irashaimasse! 2 | Sayounara \o -------------------------------------------------------------------------------- /caos/@laistdomiciano/laistdomiciano.txt: -------------------------------------------------------------------------------- 1 | hey :) 2 | bye bye! 3 | -------------------------------------------------------------------------------- /caos/@lparaujo/lparaujo.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus -------------------------------------------------------------------------------- /caos/@marceujardim/marceujardim.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus -------------------------------------------------------------------------------- /caos/@micheleguims/micheleguims.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus. -------------------------------------------------------------------------------- /caos/@nativalmeida/nativalmeida.txt: -------------------------------------------------------------------------------- 1 | Olá, 2 | Tchau! -------------------------------------------------------------------------------- /caos/@soodre/soodre.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus -------------------------------------------------------------------------------- /caos/@verdinhx/verdinhx.txt: -------------------------------------------------------------------------------- 1 | Olá! Adeus -------------------------------------------------------------------------------- /caos/@vitoriarl/vitoriarl.txt: -------------------------------------------------------------------------------- 1 | Olá! 2 | Adeus -------------------------------------------------------------------------------- /caos/@wedleycso/wedleycso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/caos/@wedleycso/wedleycso.txt -------------------------------------------------------------------------------- /caos/O_JOGO_DO_TIGRINHO_ME_DEU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/caos/O_JOGO_DO_TIGRINHO_ME_DEU.md -------------------------------------------------------------------------------- /docs/tarefa1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/docs/tarefa1.md -------------------------------------------------------------------------------- /docs/tarefa2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cumbucadev/gitcaos/HEAD/docs/tarefa2.md -------------------------------------------------------------------------------- /valnasio.txt: -------------------------------------------------------------------------------- 1 | Oi, eu sou o Valnásio! 🏃 2 | --------------------------------------------------------------------------------