Skip to content

Commit 5c3f842

Browse files
committed
Fix Actions to run on this repository
1 parent 235b880 commit 5c3f842

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/linter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
# if on repo to avoid failing runs on forks
3333
if: |
34-
github.repository == 'google/A2A'
34+
github.repository == 'google/a2a-python'
3535
3636
##################
3737
# Load all steps #

.github/workflows/spelling.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ name: Check Spelling
5959
on:
6060
push:
6161
branches:
62-
- "**"
62+
- '**'
6363
tags-ignore:
64-
- "**"
64+
- '**'
6565
pull_request:
6666
branches:
67-
- "**"
67+
- '**'
6868
types:
69-
- "opened"
70-
- "reopened"
71-
- "synchronize"
69+
- 'opened'
70+
- 'reopened'
71+
- 'synchronize'
7272
issue_comment:
7373
types:
74-
- "created"
74+
- 'created'
7575

7676
jobs:
7777
spelling:
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
# if on repo to avoid failing runs on forks
8787
if: |
88-
github.repository == 'google/A2A'
88+
github.repository == 'google/a2a-python'
8989
&& (contains(github.event_name, 'pull_request') || github.event_name == 'push')
9090
concurrency:
9191
group: spelling-${{ github.event.pull_request.number || github.ref }}
@@ -143,4 +143,4 @@ jobs:
143143
cspell:typescript/dict/typescript.txt
144144
check_extra_dictionaries: ''
145145
only_check_changed_files: true
146-
longest_word: "10"
146+
longest_word: '10'

0 commit comments

Comments
 (0)