-
Notifications
You must be signed in to change notification settings - Fork 15.1k
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
tainagotgithub
wants to merge
36
commits into
bregman-arie:master
Choose a base branch
from
tainagotgithub:pipe
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Pipe #10546
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 1f3c8d0
Create changeset.yml
tainagotgithub c88895e
Update changeset.yml
tainagotgithub 6299e5f
Update changeset.yml
tainagotgithub 81fc39b
Update changeset.yml
tainagotgithub b88c2ab
Update changeset.yml
tainagotgithub bf3f3f9
Update ci_workflow.yml
tainagotgithub b1813b5
Update ci_workflow.yml
tainagotgithub 76d5c71
Update ci_workflow.yml
tainagotgithub 3e9f828
Update ci_workflow.yml
tainagotgithub 2342d73
Update ci_workflow.yml
tainagotgithub 1802495
Update ci_workflow.yml
tainagotgithub 7872e3f
Update ci_workflow.yml
tainagotgithub 9b1e337
Update ci_workflow.yml
tainagotgithub 6607e94
Update ci_workflow.yml
tainagotgithub c588d20
Update ci_workflow.yml
tainagotgithub f0ec436
Update ci_workflow.yml
tainagotgithub 78a9629
Update ci_workflow.yml
tainagotgithub 1dba5e0
Update ci_workflow.yml
tainagotgithub 4f7b09c
Update ci_workflow.yml
tainagotgithub 9496b08
Update changeset.yml
tainagotgithub 1984f7e
Update ci_workflow.yml
tainagotgithub 67c2b4e
Update changeset.yml
tainagotgithub acda294
Update ci_workflow.yml
tainagotgithub 4a488dd
Update ci_workflow.yml
tainagotgithub b089335
Update ci_workflow.yml
tainagotgithub ab1af76
Update ci_workflow.yml
tainagotgithub 52be47a
Update changeset.yml
tainagotgithub 1c5cf04
Update ci_workflow.yml
tainagotgithub ea5e11d
Update ci_workflow.yml
tainagotgithub 40b0b98
Update ci_workflow.yml
tainagotgithub b84540a
Update changeset.yml
tainagotgithub b69d16d
Update ci_workflow.yml
tainagotgithub 8d54c3a
Update changeset.yml
tainagotgithub fc155e2
Update ci_workflow.yml
tainagotgithub e8ed955
Update ci_workflow.yml
tainagotgithub File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 }}" |
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 |
---|---|---|
@@ -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 | ||
- 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 }}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 }}" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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?