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

Fix GHA pipelines #101

Merged
merged 1 commit into from
Nov 11, 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
10 changes: 0 additions & 10 deletions .github/workflows/ack.yml

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ on:
push:
branches:
- "main"
- "releases/**"
- "stable/**"
pull_request:
branches:
- "main"
pull_request_target:
types: [opened, labeled, unlabeled] # for ack job
workflow_call:

concurrency:
Expand All @@ -21,7 +25,12 @@ permissions: # needed for tox.yml workflow
packages: write
pull-requests: write
jobs:
ack:
# checks pull-request labels and updates the release notes on pushes
if: github.event_name == 'pull_request_target' || github.event_name == 'push'
uses: ansible/team-devtools/.github/workflows/push.yml@main
tox:
if: github.event_name != 'pull_request_target'
uses: ansible/team-devtools/.github/workflows/tox.yml@main
with:
jobs_producing_coverage: 6
Expand Down