diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index e7dad43..959808e 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,2 @@ -github: ["tw93"] -custom: ["https://miaoyan.app/cats.html?name=Pake"] +github: ['tw93'] +custom: ['https://miaoyan.app/cats.html?name=Pake'] diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 127fbd4..3985793 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,7 +1,7 @@ name: Bug report description: Problems with the software -title: "[Bug] " -labels: ["bug"] +title: '[Bug] ' +labels: ['bug'] body: - type: markdown attributes: @@ -73,4 +73,4 @@ body: - label: I'm willing to submit a PR! - type: markdown attributes: - value: "Thanks for completing our form!" + value: 'Thanks for completing our form!' diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 2f268aa..a9adb44 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,6 @@ name: Feature description: Add new feature, improve code, and more -labels: [ "enhancement" ] +labels: ['enhancement'] body: - type: markdown attributes: @@ -43,4 +43,4 @@ body: - label: I'm willing to submit a PR! - type: markdown attributes: - value: "Thanks for completing our form!" + value: 'Thanks for completing our form!' diff --git a/.github/workflows/pake-cli.yaml b/.github/workflows/pake-cli.yaml index ad00b9b..8fda576 100644 --- a/.github/workflows/pake-cli.yaml +++ b/.github/workflows/pake-cli.yaml @@ -3,51 +3,50 @@ on: workflow_dispatch: inputs: platform: - description: "platform" + description: 'platform' required: true - default: "macos-latest" + default: 'macos-latest' type: choice options: - - "windows-latest" - - "macos-latest" - - "ubuntu-20.04" + - 'windows-latest' + - 'macos-latest' + - 'ubuntu-20.04' url: - description: "[URL]" + description: '[URL]' required: true name: - description: "[Name]" + description: '[Name]' required: true icon: - description: "[Icon, Optional]" + description: '[Icon, Optional]' required: false width: - description: "[Width, Optional]" + description: '[Width, Optional]' required: false - default: "1200" + default: '1200' height: - description: "[Height, Optional]" + description: '[Height, Optional]' required: false - default: "780" + default: '780' transparent: - description: "[Transparent, Optional, MacOS only]" + description: '[Transparent, Optional, MacOS only]' required: false type: boolean default: false multi_arch: - description: "[MultiArch, Optional, MacOS only]" + description: '[MultiArch, Optional, MacOS only]' required: false type: boolean default: false targets: - description: "[Targets, Optional, Linux only]" + description: '[Targets, Optional, Linux only]' required: false - default: "deb" + default: 'deb' type: choice options: - - "deb" - - "appimage" - - "all" - + - 'deb' + - 'appimage' + - 'all' jobs: build: diff --git a/.github/workflows/pake_build.yaml b/.github/workflows/pake_build.yaml index c22d3f4..48f86a2 100644 --- a/.github/workflows/pake_build.yaml +++ b/.github/workflows/pake_build.yaml @@ -3,7 +3,7 @@ on: push: # Sequence of patterns matched against refs/tags tags: - - "V*" + - 'V*' jobs: build: @@ -81,5 +81,5 @@ jobs: uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: "output/*/*.*" + artifacts: 'output/*/*.*' token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/pake_build_with_cache.yaml b/.github/workflows/pake_build_with_cache.yaml index cc6ddff..f8bc053 100644 --- a/.github/workflows/pake_build_with_cache.yaml +++ b/.github/workflows/pake_build_with_cache.yaml @@ -3,16 +3,15 @@ on: workflow_dispatch: inputs: version: - description: "tag version" + description: 'tag version' required: true - default: "V0.0.1" + default: 'V0.0.1' is_pre_release: - description: "pre-release or release, if true, is pre-release" + description: 'pre-release or release, if true, is pre-release' required: true type: boolean default: true - jobs: build: name: build @@ -94,7 +93,7 @@ jobs: with: allowUpdates: true prerelease: ${{ inputs.is_pre_release }} - artifacts: "output/*/*.*" + artifacts: 'output/*/*.*' tag: ${{ inputs.version }} token: ${{ secrets.GITHUB_TOKEN }}