diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eedbd7b342..b8dcd3d93c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 * * *" diff --git a/.github/workflows/ci_faux.yml b/.github/workflows/ci_faux.yml new file mode 100644 index 0000000000..3689e6a574 --- /dev/null +++ b/.github/workflows/ci_faux.yml @@ -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" diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index b6659cc362..6a7d352551 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -10,6 +10,10 @@ on: - '**.csv' - 'crowdin.yml' - '.mergify.yml' + - '**.vue' + - '**.pot' + - '**.po' + workflow_dispatch: concurrency: diff --git a/.github/workflows/patch_faux.yml b/.github/workflows/patch_faux.yml new file mode 100644 index 0000000000..4ea770f4aa --- /dev/null +++ b/.github/workflows/patch_faux.yml @@ -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" diff --git a/roster/src/components/NavBar.vue b/roster/src/components/NavBar.vue index 5605ff64e6..cdd4359b67 100644 --- a/roster/src/components/NavBar.vue +++ b/roster/src/components/NavBar.vue @@ -1,7 +1,7 @@