Skip to content

Commit

Permalink
🐛 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srajasimman committed Jul 2, 2024
1 parent 556961b commit d0e546f
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
uses: actions/checkout@v4
noc:
runs-on: kb-dev-jumphost-p1
concurrency:
group: ansible-playbook
needs: checkout
steps:
- name: Execute Ansible Playbook (NOC)
Expand All @@ -30,8 +28,6 @@ jobs:
devops:
runs-on: kb-dev-jumphost-p1
concurrency:
group: ansible-playbook
needs: checkout
steps:
- name: Execute Ansible Playbook (DevOps)
Expand All @@ -45,8 +41,6 @@ jobs:
engg:
runs-on: kb-dev-jumphost-p1
concurrency:
group: ansible-playbook
needs: checkout
steps:
- name: Execute Ansible Playbook (Engeneering)
Expand All @@ -60,8 +54,6 @@ jobs:
sa:
runs-on: kb-dev-jumphost-p1
concurrency:
group: ansible-playbook
needs: checkout
steps:
- name: Execute Ansible Playbook (SA)
Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ on:
paths: users/*.yml

jobs:
build:
checkout:
runs-on: kb-qa-jumphost-p1
steps:
- name: Checkout code
uses: actions/checkout@v4

noc:
runs-on: kb-qa-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (NOC)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -23,6 +26,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/noc.yml"
--inventory-file "${{ github.workspace }}/hosts/qa"
devops:
runs-on: kb-qa-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (DevOps)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -32,6 +39,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/devops.yml"
--inventory-file "${{ github.workspace }}/hosts/qa"
engg:
runs-on: kb-qa-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (Engeneering)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -41,6 +52,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/engg.yml"
--inventory-file "${{ github.workspace }}/hosts/qa"
sa:
runs-on: kb-qa-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (SA)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ on:
paths: users/*.yml

jobs:
build:
checkout:
runs-on: kb-uat-jumphost-p1
steps:
- name: Checkout code
uses: actions/checkout@v4

noc:
runs-on: kb-uat-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (NOC)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -23,6 +26,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/noc.yml"
--inventory-file "${{ github.workspace }}/hosts/uat"
devops:
runs-on: kb-uat-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (DevOps)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -32,6 +39,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/devops.yml"
--inventory-file "${{ github.workspace }}/hosts/uat"
engg:
runs-on: kb-uat-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (Engeneering)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand All @@ -41,6 +52,10 @@ jobs:
--extra-vars "@${{ github.workspace }}/users/engg.yml"
--inventory-file "${{ github.workspace }}/hosts/uat"
sa:
runs-on: kb-uat-jumphost-p1
needs: checkout
steps:
- name: Execute Ansible Playbook (SA)
uses: dawidd6/action-ansible-playbook@v2.8.0
with:
Expand Down

0 comments on commit d0e546f

Please sign in to comment.