Skip to content

Commit a1b47a3

Browse files
committed
GitHub Actions: fix grammatical issues in workflow comments
1 parent a38ef01 commit a1b47a3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ concurrency:
2626

2727
jobs:
2828

29-
# Prepare environment and build the plugin
29+
# Prepare the environment and build the plugin
3030
build:
3131
name: Build
3232
runs-on: ubuntu-latest
@@ -39,7 +39,7 @@ jobs:
3939
- name: Fetch Sources
4040
uses: actions/checkout@v4
4141

42-
# Set up Java environment for the next steps
42+
# Set up the Java environment for the next steps
4343
- name: Setup Java
4444
uses: actions/setup-java@v4
4545
with:
@@ -79,7 +79,7 @@ jobs:
7979
8080
echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT
8181
82-
# Store already-built plugin as an artifact for downloading
82+
# Store an already-built plugin as an artifact for downloading
8383
- name: Upload artifact
8484
uses: actions/upload-artifact@v4
8585
with:
@@ -97,7 +97,7 @@ jobs:
9797
- name: Fetch Sources
9898
uses: actions/checkout@v4
9999

100-
# Set up Java environment for the next steps
100+
# Set up the Java environment for the next steps
101101
- name: Setup Java
102102
uses: actions/setup-java@v4
103103
with:
@@ -128,7 +128,7 @@ jobs:
128128
with:
129129
files: ${{ github.workspace }}/build/reports/kover/report.xml
130130

131-
# Run Qodana inspections and provide report
131+
# Run Qodana inspections and provide a report
132132
inspectCode:
133133
name: Inspect code
134134
needs: [ build ]
@@ -153,7 +153,7 @@ jobs:
153153
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
154154
fetch-depth: 0 # a full history is required for pull request analysis
155155

156-
# Set up Java environment for the next steps
156+
# Set up the Java environment for the next steps
157157
- name: Setup Java
158158
uses: actions/setup-java@v4
159159
with:
@@ -184,7 +184,7 @@ jobs:
184184
- name: Fetch Sources
185185
uses: actions/checkout@v4
186186

187-
# Set up Java environment for the next steps
187+
# Set up the Java environment for the next steps
188188
- name: Setup Java
189189
uses: actions/setup-java@v4
190190
with:
@@ -210,7 +210,7 @@ jobs:
210210
path: ${{ github.workspace }}/build/reports/pluginVerifier
211211

212212
# Prepare a draft release for GitHub Releases page for the manual verification
213-
# If accepted and published, release workflow would be triggered
213+
# If accepted and published, the release workflow would be triggered
214214
releaseDraft:
215215
name: Release draft
216216
if: github.event_name != 'pull_request'

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# GitHub Actions Workflow created for handling the release process based on the draft release prepared with the Build workflow.
2-
# Running the publishPlugin task requires all following secrets to be provided: PUBLISH_TOKEN, PRIVATE_KEY, PRIVATE_KEY_PASSWORD, CERTIFICATE_CHAIN.
2+
# Running the publishPlugin task requires all the following secrets to be provided: PUBLISH_TOKEN, PRIVATE_KEY, PRIVATE_KEY_PASSWORD, CERTIFICATE_CHAIN.
33
# See https://plugins.jetbrains.com/docs/intellij/plugin-signing.html for more information.
44

55
name: Release
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

27-
# Set up Java environment for the next steps
27+
# Set up the Java environment for the next steps
2828
- name: Setup Java
2929
uses: actions/setup-java@v4
3030
with:
@@ -68,7 +68,7 @@ jobs:
6868
PRIVATE_KEY_PASSWORD: ${{ secrets.PRIVATE_KEY_PASSWORD }}
6969
run: ./gradlew publishPlugin
7070

71-
# Upload artifact as a release asset
71+
# Upload an artifact as a release asset
7272
- name: Upload Release Asset
7373
env:
7474
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/run-ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Fetch Sources
3636
uses: actions/checkout@v4
3737

38-
# Set up Java environment for the next steps
38+
# Set up the Java environment for the next steps
3939
- name: Setup Java
4040
uses: actions/setup-java@v4
4141
with:

0 commit comments

Comments
 (0)