Skip to content

Commit

Permalink
ops(KDP): attaching correct workflos container
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrlaczkowski committed Mar 14, 2024
1 parent de6f215 commit f64f0fa
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/DOCS_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
MIKE_RELEASE_DOCs:
runs-on: [self-hosted, Linux, standard]
runs-on: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/PRECOMMITS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ on:
- dev
- main

concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true

jobs:
pre-commit-checks:
runs-on: [self-hosted, Linux, standard]
runs-on: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PR_PREVIEW.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency: preview-${{ github.ref }}

jobs:
deploy-pr-preview:
runs-on: [self-hosted, Linux, standard]
runs-on: ["ubuntu-latest"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
SEMANTIC_RELEASE:
runs-on: [self-hosted, Linux, standard]
runs-on: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
- name: "Semantic Release"
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/UTESTS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ on:
required: false
default: 3.11

concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true

jobs:
run-unit-test:
runs-on: [self-hosted, Linux, standard]
runs-on: ["ubuntu-latest"]
strategy:
matrix:
python-version: [3.11]
Expand Down

0 comments on commit f64f0fa

Please sign in to comment.