Skip to content

Commit

Permalink
add paths and concurrency to pro integration workflow (#6283)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshCasper committed Jun 19, 2022
1 parent 6d6f3b5 commit 21671ac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pro-integration.yml
Expand Up @@ -7,12 +7,38 @@ on:
required: true
default: 'master'
pull_request:
paths:
- ".github/workflows/pro-integration.yml"
- "localstack/**"
- "tests/**"
- "setup.py"
- "pyproject.toml"
- "setup.cfg"
- "Dockerfile"
- "Dockerfile.rh"
- "docker-compose.yml"
- "bin/**"
branches:
- master
push:
paths:
- ".github/workflows/pro-integration.yml"
- "localstack/**"
- "tests/**"
- "setup.py"
- "pyproject.toml"
- "setup.cfg"
- "Dockerfile"
- "Dockerfile.rh"
- "docker-compose.yml"
- "bin/**"
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
run-integration-tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 21671ac

Please sign in to comment.