-
-
Notifications
You must be signed in to change notification settings - Fork 15
41 lines (33 loc) · 1.28 KB
/
olar-issue-ao-dar-estrela.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Criar Issue de Boas Vindas ao Adicionar Estrela
on:
watch:
types: [started]
workflow_dispatch:
pull_request:
jobs:
create_issue:
runs-on: ubuntu-latest
steps:
- 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=".github/ISSUE_TEMPLATE/olar.md"
ISSUE_FILE=".github/ISSUE_TEMPLATE/issue_temp.md"
# Verifica se a variável USERNAME está definida
echo "Username is: $USERNAME"
# 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
# Adiciona um comando para verificar se o arquivo foi criado
ls -l .github/ISSUE_TEMPLATE
- name: Criando uma issue de boas-vindas
uses: peter-evans/create-issue-from-file@v4
with:
title: "Boas vindas ao GitCaos 🔥!"
content-filepath: .github/ISSUE_TEMPLATE/issue_temp.md
labels: 'praticando-na-solidão'
assignees: ${{ env.USERNAME }} # Use a variável de ambiente aqui