Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
MFM-347 committed Dec 21, 2024
1 parent b625376 commit 5e93ffb
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/.pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Include any updates to dependencies, frameworks, or tooling (e.g., `tailwindcss`

## Additional Comments

Provide any additional context, considerations, or follow-up tasks related to this pull request.
Provide any additional context, considerations, or follow-up tasks related to this pull request.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ body:
- Low
- Medium
- High
- Critical
- Critical
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
blank_issues_enabled: false
blank_issues_enabled: false
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ body:
- Low
- Medium
- High
- Critical
- Critical
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ body:
description: A little Elaboration of your question.
placeholder: Provide additional detailed information.
validations:
required: true
required: true
2 changes: 1 addition & 1 deletion .github/workflows/AutoRespond.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: '<h1>Feeling great to have your contribution for this project</h1> Welcome to our project'
pr-message: '<h1>Feeling great to have your contribution for this project</h1> Welcome to our project'
footer: 'Our developers will respond you as soon as possible. Any questions? Let us know.'
footer: 'Our developers will respond you as soon as possible. Any questions? Let us know.'
4 changes: 2 additions & 2 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build debug-app
'on':
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -33,4 +33,4 @@ jobs:
name: debug-artifacts
path: |
${{ steps.debugAab.outputs.aabfile }}
${{ steps.debugApk.outputs.apkfile }}
${{ steps.debugApk.outputs.apkfile }}
14 changes: 7 additions & 7 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: AutoFormat
on:
push:
paths:
- "**/*"
- '**/*'
branches:
- main
pull_request:
paths:
- "**/*"
- '**/*'
branches:
- main
workflow_dispatch:
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: '16'

- name: Configure Prettier
run: |
Expand All @@ -36,8 +36,7 @@ jobs:
"printWidth": 80,
"arrowParens": "always"
}' > .prettierrc
echo '# Ignore all minified files
*.min.*
echo '*.min.*
.github/**/*
*-min.*
*.xml' > .prettierignore
Expand All @@ -48,7 +47,8 @@ jobs:
- name: Format all files
run: |
npx prettier -w *.md *.java
npx prettier -w **/*.md
npx prettier -w **/*.java --plugin=prettier-plugin-java
- name: Clean up unnecessary files
run: |
Expand All @@ -62,4 +62,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git config --global user.email "[email protected]"

0 comments on commit 5e93ffb

Please sign in to comment.