Skip to content

Commit 642ced2

Browse files
committed
Prettier yaml updates
1 parent e86cce1 commit 642ced2

10 files changed

+47
-47
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bug Report
22
description: File a bug report
3-
title: '[Bug] '
4-
labels: ['bug']
3+
title: "[Bug] "
4+
labels: ["bug"]
55
#assignees:
66
body:
77
- type: markdown

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ contact_links:
99
https://github.com/Chia-Network/chia-blockchain/discussions/new?category=ideas
1010
- about: Get support on the Chia Discord chat channels.
1111
name: Join the Discord support chat
12-
url: 'https://discord.gg/chia'
12+
url: "https://discord.gg/chia"

.github/dependabot.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,28 @@
44
version: 2
55
updates:
66
# Enable version updates for npm
7-
- package-ecosystem: 'npm'
7+
- package-ecosystem: "npm"
88
# Look for `package.json` and `lock` files in the `root` directory
9-
directory: 'electron-react '
9+
directory: "electron-react "
1010
# Check the npm registry for updates every day (weekdays)
1111
schedule:
12-
interval: 'weekly'
13-
day: 'monday'
14-
target-branch: 'dev'
12+
interval: "weekly"
13+
day: "monday"
14+
target-branch: "dev"
1515
pull-request-branch-name:
1616
# Separate sections of the branch name with a hyphen
1717
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
18-
separator: '-'
18+
separator: "-"
1919

2020
# Maintain dependencies for GitHub Actions
21-
- package-ecosystem: 'github-actions'
22-
directory: '/'
21+
- package-ecosystem: "github-actions"
22+
directory: "/"
2323
# Check for updates once a week
2424
schedule:
25-
interval: 'weekly'
26-
day: 'monday'
27-
target-branch: 'dev'
25+
interval: "weekly"
26+
day: "monday"
27+
target-branch: "dev"
2828
pull-request-branch-name:
2929
# Separate sections of the branch name with a hyphen
3030
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
31-
separator: '-'
31+
separator: "-"

.github/workflows/audit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Check npm audit and locales
33
on:
44
push:
55
branches-ignore:
6-
- 'main'
6+
- "main"
77
pull_request:
88
branches-ignore:
9-
- 'main'
9+
- "main"
1010

1111
concurrency:
1212
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}--${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.ref, 'refs/heads/long_lived/')) && github.sha || '' }}
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Node 18.x
4747
uses: actions/setup-node@v3
4848
with:
49-
node-version: '18.x'
49+
node-version: "18.x"
5050

5151
- name: Check npm audit on ${{ matrix.os }}
5252
shell: bash

.github/workflows/code-check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ on:
33
# We never push directly to 'main', so do not run on it
44
push:
55
branches-ignore:
6-
- 'main'
6+
- "main"
77
pull_request:
88
branches-ignore:
9-
- 'main'
9+
- "main"
1010
# Allows you to run this workflow manually from the Actions tab
1111
workflow_dispatch:
1212
jobs:
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-node@v3
1818
with:
1919
# Use node version from '.nvmrc' instead of hardcoding here
20-
node-version-file: '.nvmrc'
20+
node-version-file: ".nvmrc"
2121
- name: npm ci
2222
run: npm ci
2323
- name: npm run build:ci

.github/workflows/crowdin-pull.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
workflow_dispatch:
55
inputs:
66
pr_target:
7-
description: 'PR Target Branch for Updated Translations'
7+
description: "PR Target Branch for Updated Translations"
88
type: string
9-
default: 'main'
9+
default: "main"
1010
schedule:
11-
- cron: '0 0 * * 0'
11+
- cron: "0 0 * * 0"
1212

1313
permissions:
1414
id-token: write
@@ -32,7 +32,7 @@ jobs:
3232
- name: Checkout
3333
uses: actions/checkout@v4
3434
with:
35-
ref: '${{ inputs.pr_target || github.ref_name }}'
35+
ref: "${{ inputs.pr_target || github.ref_name }}"
3636

3737
- name: Vault Login
3838
uses: Chia-Network/actions/vault/login@main
@@ -64,14 +64,14 @@ jobs:
6464
crowdin_branch_name: main
6565
localization_branch_name: ${{ env.localization_branch_name }}
6666
create_pull_request: true
67-
pull_request_title: 'New Crowdin Translations'
68-
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
67+
pull_request_title: "New Crowdin Translations"
68+
pull_request_body: "New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)"
6969
pull_request_base_branch_name: "${{ inputs.pr_target || 'main' }}"
70-
github_user_name: 'Chia Automation'
71-
github_user_email: '[email protected]'
70+
github_user_name: "Chia Automation"
71+
github_user_email: "[email protected]"
7272
gpg_private_key: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_KEY_RSA }}
7373
gpg_passphrase: ${{ secrets.CHIA_AUTOMATION_PRIVATE_GPG_PASSPHRASE }}
74-
skip_ref_checkout: 'true'
74+
skip_ref_checkout: "true"
7575
env:
7676
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777

.github/workflows/dependency-review.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Source repository: https://github.com/actions/dependency-review-action
77
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
8-
name: '🚨 Dependency Review'
8+
name: "🚨 Dependency Review"
99
on: [pull_request]
1010

1111
permissions:
@@ -15,10 +15,10 @@ jobs:
1515
dependency-review:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: 'Checkout Repository'
18+
- name: "Checkout Repository"
1919
uses: actions/checkout@v4
2020

21-
- name: 'Dependency Review'
21+
- name: "Dependency Review"
2222
uses: actions/dependency-review-action@v4
2323
with:
2424
deny-licenses: AGPL-1.0-only, AGPL-1.0-or-later, AGPL-1.0-or-later, AGPL-3.0-or-later, GPL-1.0-only, GPL-1.0-or-later, GPL-2.0-only, GPL-2.0-or-later, GPL-3.0-only, GPL-3.0-or-later

.github/workflows/extract-strings.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Extract Strings for Translation
33
on:
44
push:
55
branches:
6-
- 'main'
6+
- "main"
77
workflow_dispatch:
88

99
permissions:
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node 18.x
2929
uses: actions/setup-node@v3
3030
with:
31-
node-version: '18.x'
31+
node-version: "18.x"
3232

3333
- name: Set up commit signing
3434
uses: Chia-Network/actions/commit-sign/gpg@main
@@ -45,13 +45,13 @@ jobs:
4545
uses: peter-evans/create-pull-request@v5
4646
with:
4747
base: main
48-
body: 'Extracted latest strings from source'
48+
body: "Extracted latest strings from source"
4949
branch: string-updates
50-
commit-message: 'Extracted latest strings from source'
50+
commit-message: "Extracted latest strings from source"
5151
delete-branch: true
52-
reviewers: 'emlowe'
53-
assignees: 'emlowe'
54-
title: 'Latest Strings'
55-
token: '${{ secrets.GITHUB_TOKEN }}'
56-
committer: 'ChiaAutomation <[email protected]>'
57-
author: 'ChiaAutomation <[email protected]>'
52+
reviewers: "emlowe"
53+
assignees: "emlowe"
54+
title: "Latest Strings"
55+
token: "${{ secrets.GITHUB_TOKEN }}"
56+
committer: "ChiaAutomation <[email protected]>"
57+
author: "ChiaAutomation <[email protected]>"

.github/workflows/stale-issue.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
name: 'Close stale issues'
2+
name: "Close stale issues"
33
on:
44
schedule:
5-
- cron: '0 11 * * *'
5+
- cron: "0 11 * * *"
66

77
jobs:
88
stale:

crowdin.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project_id: 1
22
api_token_env: CROWDIN_PERSONAL_TOKEN
3-
base_path: '.'
4-
base_url: 'https://chia.crowdin.com'
3+
base_path: "."
4+
base_url: "https://chia.crowdin.com"
55
preserve_hierarchy: true
66
files:
77
- source: /packages/core/src/locales/en-US/*.po

0 commit comments

Comments
 (0)