We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffebe74 commit 0c6abefCopy full SHA for 0c6abef
3 files changed
.github/workflows/debug.yml
@@ -24,6 +24,8 @@ jobs:
24
name: Build Debug APK
25
runs-on: ubuntu-latest
26
27
+ if: github.event.head_commit.message != 'chore(format)'
28
+
29
steps:
30
- name: Checkout code
31
uses: actions/checkout@v4
.github/workflows/format.yml
@@ -80,5 +80,5 @@ jobs:
80
git config --global user.name "GitHub Actions"
81
git config --global user.email "[email protected]"
82
git add .
83
- git diff --cached --quiet || git commit -m "format"
+ git diff --cached --quiet || git commit -m "chore(format)"
84
git push
app/src/test/java/dev/mfm/appx/ExampleUnitTest.kt
@@ -1,4 +1,4 @@
1
-package com.example.appx
+package dev.mfm.appx
2
3
import org.junit.Assert.*
4
import org.junit.Test
0 commit comments