Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pipe #10546

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open

Pipe #10546

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ef47d78
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
1f3c8d0
Create changeset.yml
tainagotgithub Jan 7, 2025
c88895e
Update changeset.yml
tainagotgithub Jan 7, 2025
6299e5f
Update changeset.yml
tainagotgithub Jan 7, 2025
81fc39b
Update changeset.yml
tainagotgithub Jan 7, 2025
b88c2ab
Update changeset.yml
tainagotgithub Jan 7, 2025
bf3f3f9
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
b1813b5
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
76d5c71
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
3e9f828
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
2342d73
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
1802495
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
7872e3f
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
9b1e337
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
6607e94
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
c588d20
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
f0ec436
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
78a9629
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
1dba5e0
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
4f7b09c
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
9496b08
Update changeset.yml
tainagotgithub Jan 7, 2025
1984f7e
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
67c2b4e
Update changeset.yml
tainagotgithub Jan 7, 2025
acda294
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
4a488dd
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
b089335
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
ab1af76
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
52be47a
Update changeset.yml
tainagotgithub Jan 7, 2025
1c5cf04
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
ea5e11d
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
40b0b98
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
b84540a
Update changeset.yml
tainagotgithub Jan 7, 2025
b69d16d
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
8d54c3a
Update changeset.yml
tainagotgithub Jan 7, 2025
fc155e2
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
e8ed955
Update ci_workflow.yml
tainagotgithub Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Changeset Workflow

permissions:
contents: write
actions: write

on:
push:
branches:
- pipe
workflow_dispatch:

jobs:
changeset:
runs-on: ubuntu-latest
steps:
- name: Teste de mudanças
run: echo "Mudanças processadas com sucesso!"
- name: Verificar variáveis
- name : vars
run: |
echo "Evento do workflow: ${{ github.event_name }}"
echo "Conclusão do workflow: ${{ github.event.workflow_run.conclusion }}"
echo "ID do Workflow: ${{ github.event.workflow_run.id }}"
27 changes: 14 additions & 13 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: CI
name: Deploy Workflow

on:
pull_request:
branches: [ master ]

workflow_run:
workflows: ["Changeset Workflow"] # Certifique-se de que o nome está correto e sem erros
types:
- failure # Pode ser 'completed' para pegar qualquer finalização

jobs:
ci:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why would you remove those steps?

- name: Install flake8
run: pip install flake8
- name: Give executable permissions to run_ci.sh inside the scripts directory
run: chmod a+x scripts/run_ci.sh
- name: Run the ci script inside the scripts folder
run: bash scripts/run_ci.sh
shell: bash
- name: Verificar variáveis
run: |
echo "Evento do workflow: ${{ github.event_name }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's the purpose of that echo messages and why in spanish?

echo "Conclusão do workflow: ${{ github.event.workflow_run.conclusion }}"
echo "ID do Workflow: ${{ github.event.workflow_run.id }}"