Skip to content

Commit 0eff8a6

Browse files
authored
Update pull-request-suite.yaml
1 parent 76865d6 commit 0eff8a6

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/pull-request-suite.yaml

+7-9
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
name: Pull Request Suite
1616

1717
on:
18-
push:
1918
pull_request:
20-
merge_group:
21-
workflow_dispatch:
2219

2320
concurrency:
2421
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
@@ -28,14 +25,15 @@ env:
2825
CHIP_NO_LOG_TIMESTAMPS: true
2926

3027
jobs:
31-
restyled:
32-
name: Restyle
28+
spell:
29+
name: Spell Check
3330
runs-on: ubuntu-latest
3431
steps:
35-
- name: Check Restyle Status
32+
- name: Spell Check Status
3633
run: |
37-
curl -L \
34+
gh api \
3835
-H "Accept: application/vnd.github+json" \
39-
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
4036
-H "X-GitHub-Api-Version: 2022-11-28" \
41-
https://api.github.com/repos/project-chip/connectedhomeip/actions/runs
37+
env:
38+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
PR_NUMBER: ${{ github.event.number }}

0 commit comments

Comments
 (0)