Skip to content

Commit 4a05085

Browse files
committed
yamlfmt
1 parent 58efef0 commit 4a05085

File tree

5 files changed

+61
-73
lines changed

5 files changed

+61
-73
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: |
44
body:
55
- type: markdown
66
attributes:
7-
value: |
7+
value: |
88
There are [standards for bug reports](https://github.com/shogo4405/HaishinKit.swift/wiki/BugReport-Standard) expected by the community. If you are posting for the first time, please read them carefully. Reports that do not meet these standards will be closed.
99
- type: textarea
1010
id: observed-behavior
@@ -36,7 +36,7 @@ body:
3636
id: version
3737
attributes:
3838
label: Version
39-
description: What version of our software are you running?
39+
description: What version of our software are you running?
4040
validations:
4141
required: true
4242
- type: textarea
@@ -45,17 +45,17 @@ body:
4545
label: Smartphone info.
4646
description: please complete the following information
4747
placeholder: |
48-
- Device: [e.g. iPhone 15 Pro]
49-
- OS: [e.g. iOS 18.1]
48+
- Device: [e.g. iPhone 15 Pro]
49+
- OS: [e.g. iOS 18.1]
5050
- type: textarea
5151
id: addditional-context
5252
attributes:
5353
label: Additional context
5454
description: Add any other context about the problem here. If you encounter issues while using HaishinKit for streaming or viewing, please provide the server name as well as the name of the software you are using for streaming or viewing.
5555
placeholder: |
56-
- Server: [e.g. nginx + rtmp module, YouTube]
57-
- Ingest software: [e.g. OBS RTMP H264(main) AAC]
58-
- Playback software: [e.g. iOS AVAudioPlayer(via HLS)]
56+
- Server: [e.g. nginx + rtmp module, YouTube]
57+
- Ingest software: [e.g. OBS RTMP H264(main) AAC]
58+
- Playback software: [e.g. iOS AVAudioPlayer(via HLS)]
5959
- type: textarea
6060
id: screenshot
6161
attributes:

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# package ecosystems to update and where the package manifests are located.
33
# Please see the documentation for all configuration options:
44
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
65
version: 2
76
updates:
87
- package-ecosystem: "gradle" # See documentation for possible values
@@ -13,4 +12,3 @@ updates:
1312
directory: '/'
1413
schedule:
1514
interval: "weekly"
16-

.github/workflows/android.yml

Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
11
name: Android CI
2-
32
on:
43
pull_request:
5-
branches: [ main ]
6-
4+
branches: [main]
75
jobs:
86
build:
97
runs-on: ubuntu-latest
108
steps:
11-
- uses: actions/checkout@v2
12-
with:
13-
submodules: true
14-
- name: Setup JDK 17
15-
uses: actions/setup-java@v4
16-
with:
17-
java-version: '17'
18-
distribution: 'adopt'
19-
cache: gradle
20-
- uses: gradle/actions/setup-gradle@v3
21-
with:
22-
cache-read-only: false
23-
- name: Setup Ruby
24-
uses: ruby/setup-ruby@v1
25-
with:
26-
ruby-version: 3.0.6
27-
bundler-cache: true
28-
- name: fastlane
29-
env:
30-
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31-
run: bundle exec fastlane review
32-
9+
- uses: actions/checkout@v2
10+
with:
11+
submodules: true
12+
- name: Setup JDK 17
13+
uses: actions/setup-java@v4
14+
with:
15+
java-version: '17'
16+
distribution: 'adopt'
17+
cache: gradle
18+
- uses: gradle/actions/setup-gradle@v3
19+
with:
20+
cache-read-only: false
21+
- name: Setup Ruby
22+
uses: ruby/setup-ruby@v1
23+
with:
24+
ruby-version: 3.0.6
25+
bundler-cache: true
26+
- name: fastlane
27+
env:
28+
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
run: bundle exec fastlane review

.github/workflows/lock-thread.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
name: 'Lock Threads'
2-
32
on:
43
schedule:
54
- cron: '0 1 * * 1,4'
65
workflow_dispatch:
7-
86
permissions:
97
issues: write
10-
118
concurrency:
129
group: lock
13-
1410
jobs:
1511
action:
1612
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 32 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,41 @@
11
name: Release
2-
32
on:
43
push:
54
tags:
65
- '*.*.*'
7-
86
jobs:
97
build:
108
runs-on: ubuntu-latest
119
steps:
12-
- uses: actions/checkout@v4
13-
with:
14-
submodules: true
15-
- name: Setup JDK 17
16-
uses: actions/setup-java@v4
17-
with:
18-
java-version: '17'
19-
distribution: 'adopt'
20-
cache: gradle
21-
- uses: gradle/actions/setup-gradle@v3
22-
with:
23-
cache-read-only: false
24-
- name: Setup Ruby
25-
uses: ruby/setup-ruby@v1
26-
with:
27-
ruby-version: 3.0.6
28-
bundler-cache: true
29-
- name: fastlane
30-
env:
31-
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32-
run: bundle exec fastlane review
33-
- name: Setup SSH
34-
run: |
35-
mkdir -p ~/.ssh
36-
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
37-
chmod 600 ~/.ssh/id_rsa
38-
ssh-keyscan github.com >> ~/.ssh/known_hosts
39-
- name: fastlane
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
run: |
43-
bundle exec fastlane document version:${{ github.ref_name }}
44-
10+
- uses: actions/checkout@v4
11+
with:
12+
submodules: true
13+
- name: Setup JDK 17
14+
uses: actions/setup-java@v4
15+
with:
16+
java-version: '17'
17+
distribution: 'adopt'
18+
cache: gradle
19+
- uses: gradle/actions/setup-gradle@v3
20+
with:
21+
cache-read-only: false
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: 3.0.6
26+
bundler-cache: true
27+
- name: fastlane
28+
env:
29+
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
run: bundle exec fastlane review
31+
- name: Setup SSH
32+
run: |
33+
mkdir -p ~/.ssh
34+
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
35+
chmod 600 ~/.ssh/id_rsa
36+
ssh-keyscan github.com >> ~/.ssh/known_hosts
37+
- name: fastlane
38+
env:
39+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40+
run: |
41+
bundle exec fastlane document version:${{ github.ref_name }}

0 commit comments

Comments
 (0)