-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
3b7a72c
commit 1f40fec
Showing
7 changed files
with
307 additions
and
47 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
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,65 @@ | ||
name: Criar issue tarefa 1 | ||
|
||
on: | ||
fork: | ||
workflow_dispatch: | ||
inputs: | ||
username: | ||
description: 'Nome de usuário no GitHub para personalizar a issue' | ||
required: true | ||
default: 'seu_nome_de_usuário' | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
create_issue: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout do repositório | ||
uses: actions/checkout@v4 | ||
- name: Set up GitHub user | ||
id: get_user | ||
run: | | ||
echo "USERNAME=$(jq -r .sender.login $GITHUB_EVENT_PATH)" >> $GITHUB_ENV | ||
- name: Criar um arquivo de issue personalizado | ||
id: create_file | ||
run: | | ||
USERNAME=${{ env.USERNAME }} | ||
TEMPLATE_PATH="../gitcaos/.github/workflows/template_tarefa1.md" | ||
ISSUE_FILE="../gitcaos/.github/workflows/issue_temp.md" | ||
echo "Username is: $USERNAME" | ||
# Verifica se a variável USERNAME está definida | ||
if [ -z "$USERNAME" ]; then | ||
echo "USERNAME não está definido." | ||
exit 1 | ||
fi | ||
# Remove o arquivo temporário se ele já existir | ||
if [ -f "$ISSUE_FILE" ]; then | ||
echo "Removendo arquivo existente: $ISSUE_FILE" | ||
rm $ISSUE_FILE | ||
fi | ||
# Substitui @seu_nome_de_usuário pelo nome do usuário no template | ||
sed "s/seu_nome_de_usuário/${USERNAME}/g" $TEMPLATE_PATH > $ISSUE_FILE | ||
# Verifica se o arquivo de issue_temp.md foi criado | ||
if [ -f "$ISSUE_FILE" ]; then | ||
echo "$ISSUE_FILE criado com sucesso." | ||
else | ||
echo "$ISSUE_FILE não foi criado." | ||
exit 1 | ||
fi | ||
- name: Criando uma issue de boas-vindas | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: "Tarefa 1: Criar arquivo: `${{ env.USERNAME }}.txt`" | ||
content-filepath: ../gitcaos/.github/workflows/issue_temp.md | ||
labels: 'praticando-na-solidão, tarefa-1' | ||
assignees: ${{ env.USERNAME }} |
File renamed without changes.
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,29 @@ | ||
# Tarefa 2: O Jogo do Tigrinho me deu (seu_nome_de_usuário) | ||
|
||
Parabéns por concluir a Tarefa 1! 🎉 Agora vamos editar um arquivo que muitas outras pessoas também estão usando. Isso vai tornar nossa comunidade ainda mais divertida! | ||
|
||
## Passo 1: Localizar o arquivo | ||
|
||
- O arquivo que você deve editar está localizado em `caos/O_JOGO_DO_TIGRINHO_ME_DEU.md`. | ||
|
||
## Passo 2: Adicionar sua contribuição | ||
|
||
- Abra o arquivo `O_JOGO_DO_TIGRINHO_ME_DEU.md` em um editor de texto de sua preferência (como Notepad, VSCode, ou outro). | ||
|
||
- Adicione uma nova linha no final do arquivo com a seguinte frase: | ||
|
||
```txt | ||
- O jogo do Tigrinho me deu [sua contribuição]! | ||
``` | ||
|
||
- Substitua `[sua contribuição]` pelo que o jogo te deu. Por exemplo: | ||
|
||
```txt | ||
- O jogo do Tigrinho me deu coragem para enfrentar desafios! | ||
``` | ||
|
||
## Passo 3: Salve as alterações | ||
|
||
- Após adicionar sua linha, não se esqueça de **salvar** o arquivo. Isso é crucial para que as alterações sejam mantidas. | ||
|
||
Caso precise de ajuda, não hesite em perguntar nos comentários! A comunidade está aqui para ajudar uns aos outros. |
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 @@ | ||
# O JOGO DO TIGRINHO ME DEU | ||
|
||
- O jogo do Tigrinho me deu um iate |
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
Oops, something went wrong.