Skip to content
Open
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/auto-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
build-and-push:
if: github.event.pull_request.merged == true
name: Build and Push Docker Image
runs-on: self-hosted
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/code-quality-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ jobs:
style-quality:
if: github.event.pull_request.draft == false
name: Code Style & Quality
runs-on: self-hosted
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up pnpm
run: corepack prepare pnpm@latest --activate

- name: Add pnpm to PATH
run: echo "/home/btngana/.local/share/pnpm" >> $GITHUB_PATH
- uses: pnpm/action-setup@v6
with:
version: 10.28.0

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
e2e-tests:
runs-on: self-hosted
runs-on: ubuntu-latest
environment: e2e
env:
APP_POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-validation-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
validate-merge-permissions:
if: github.event.pull_request.base.ref == 'main'
runs-on: self-hosted
runs-on: ubuntu-latest
name: Validate Merge Permissions
steps:
- name: Verify Authorized User
Expand All @@ -31,7 +31,7 @@ jobs:
branch-name-validation:
if: github.event.pull_request.base.ref == 'dev'
name: Validate branch naming convention
runs-on: self-hosted
runs-on: ubuntu-latest

steps:
- name: Enforce kebab-case branch name
Expand All @@ -49,7 +49,7 @@ jobs:

validate-pr-title:
name: Validate PR title format
runs-on: self-hosted
runs-on: ubuntu-latest

steps:
- name: Check PR title format
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testers-checklist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
checklist:
if: github.event.pull_request.draft == false
runs-on: self-hosted
runs-on: ubuntu-latest

permissions:
pull-requests: write
Expand Down
Loading