Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
- "**.csv"
- "**.po"
- "**.pot"
- 'crowdin.yml'
- '.mergify.yml'
- '**.vue'
schedule:
# Run everday at midnight UTC / 5:30 IST
- cron: "0 0 * * *"
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/ci_faux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Tests are skipped for these files but github doesn't allow "passing" hence this is required.

name: Skipped Tests

on:
pull_request:
paths:
- "**.css"
- "**.js"
- "**.md"
- "**.html"
- "**.csv"
- "**.po"
- "**.pot"
- 'crowdin.yml'
- '.mergify.yml'
- '**.vue'

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
container: [1, 2, 3]

name: Python Unit Tests

steps:
- name: Pass skipped tests unconditionally
run: "echo Skipped"
4 changes: 4 additions & 0 deletions .github/workflows/patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
- '**.csv'
- 'crowdin.yml'
- '.mergify.yml'
- '**.vue'
- '**.pot'
- '**.po'

workflow_dispatch:

concurrency:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/patch_faux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Tests are skipped for these files but github doesn't allow "passing" hence this is required.

name: Skipped Patch Test

on:
pull_request:
paths:
- '**.js'
- '**.css'
- '**.md'
- '**.html'
- '**.csv'
- 'crowdin.yml'
- '.mergify.yml'
- '**.vue'
- '**.pot'
- '**.po'

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest

name: Patch Test

steps:
- name: Pass skipped tests unconditionally
run: "echo Skipped"
2 changes: 1 addition & 1 deletion roster/src/components/NavBar.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="h-12 bg-white border-b px-12 flex items-center">
<div class="flex items-center space-x-1.5">
<a href="/app/hr" class="text-gray-600 hover:text-gray-700 flex items-center">
<a href="/desk/people" class="text-gray-600 hover:text-gray-700 flex items-center">
<FrappeHRLogo class="h-6 w-6 mr-2.5" />
Frappe HR
</a>
Expand Down
Loading