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

Prevent canceling in progress jobs on release #462

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${ github.event_name }-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

permissions:
checks: read
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_nav_collections(
f"ansible-navigator collections --lf {tmp_path}/navigator.log"
f" --pp never --eei {infrastructure.navigator_ee}"
)
stdout = container_tmux.send_and_wait(cmd=cmd, wait_for=":help help", timeout=15)
stdout = container_tmux.send_and_wait(cmd=cmd, wait_for=":help help", timeout=30)
assert any("ansible.builtin" in line for line in stdout)
assert any("ansible.posix" in line for line in stdout)
cmd = ":0"
Expand Down