Skip to content

Commit

Permalink
Merge remote-tracking branch 'lawnicons/develop' into shinka
Browse files Browse the repository at this point in the history
  • Loading branch information
project404bot committed Nov 10, 2024
2 parents c453aee + af05add commit 820ea67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build_debug_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check-paths:
runs-on: ubuntu-latest
outputs:
skip_steps: ${{ steps.filter.outputs.workflows }}
skip_steps: ${{ steps.filter.outputs.workflows && !steps.nofilter.outputs.workflows }}
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand All @@ -32,6 +32,21 @@ jobs:
- '.gitattributes'
- '.github/labeler.yml'
- '.github/release.yml'
- name: Check for non ignored paths
uses: dorny/paths-filter@v3
id: nofilter
with:
filters: |
workflows:
- '!**.md'
- '!LICENSE'
- '!.idea/**'
- '!docs/**'
- '!.github/ISSUE_TEMPLATE/**'
- '!.gitignore'
- '!.gitattributes'
- '!.github/labeler.yml'
- '!.github/release.yml'
build-debug-apk:
runs-on: ubuntu-latest
needs: check-paths
Expand Down Expand Up @@ -66,7 +81,6 @@ jobs:
with:
name: Debug APK
path: app/build/outputs/apk/app/debug/*.apk

check-style:
runs-on: ubuntu-latest
needs: check-paths
Expand Down
1 change: 1 addition & 0 deletions app/assets/appfilter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7707,6 +7707,7 @@
<item component="ComponentInfo{io.timelimit.android.open/io.timelimit.android.ui.MainActivity}" drawable="timelimit" name="Open TimeLimit" />
<item component="ComponentInfo{io.github.devhyper.openvideoeditor/io.github.devhyper.openvideoeditor.main.MainActivity}" drawable="open_video_editor" name="Open Video Editor" />
<item component="ComponentInfo{es.openbank.mobile/com.accountmanager.myapplication.views.activities.LoginActivity}" drawable="openbank" name="Openbank" />
<item component="ComponentInfo{com.schwegelbin.openbible/com.schwegelbin.openbible.MainActivity}" drawable="bible" name="OpenBible" />
<item component="ComponentInfo{org.dslul.openboard.inputmethod.latin/org.dslul.openboard.inputmethod.latin.setup.SetupActivity}" drawable="openboard" name="OpenBoard" />
<item component="ComponentInfo{com.openbubbles.messaging/com.bluebubbles.messaging.MainActivity}" drawable="openbubbles" name="OpenBubbles" />
<item component="ComponentInfo{com.darkempire78.opencalculator/com.darkempire78.opencalculator.MainActivity}" drawable="calculator" name="OpenCalc" />
Expand Down

0 comments on commit 820ea67

Please sign in to comment.