chore: Configured to Use Reusable Workflow (#1832) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | ||
# Trigger conditions for the workflow | ||
on: | ||
push: | ||
branches: [ dev ] # Runs on pushes to dev branch | ||
pull_request: # Runs on all pull requests | ||
# Concurrency settings to prevent multiple simultaneous workflow runs | ||
concurrency: | ||
group: pr-${{ github.ref }} | ||
cancel-in-progress: true # Cancels previous runs if a new one is triggered | ||
permissions: | ||
contents: write | ||
jobs: | ||
pr_checks: | ||
name: PR Checks | ||
uses: openMF/mifos-mobile-github-actions/.github/workflows/pr-check.yaml@main | ||
Check failure on line 20 in .github/workflows/pr-check.yaml GitHub Actions / .github/workflows/pr-check.yamlInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
android_package_name: 'mifospay-android' | ||
desktop_package_name: 'mifospay-desktop' |