Skip to content

Commit 14c119f

Browse files
committed
wip
1 parent 20cb557 commit 14c119f

File tree

8 files changed

+16
-4
lines changed

8 files changed

+16
-4
lines changed

.github/workflows/build-esp.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-esp:

.github/workflows/build-nuttx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-nuttx:

.github/workflows/build-pico-sdk.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-pico-sdk:

.github/workflows/build-rpi-baremetal.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-rpi-baremetal:

.github/workflows/build-stm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-stm32:

.github/workflows/build-zephyr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
build-zephyr:

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: ["main"]
66
pull_request:
77
types: [opened, reopened, synchronize]
8+
repository_dispatch:
9+
types: [create-pull-request]
810

911
jobs:
1012
validate_format_config:

.github/workflows/update-swift-version.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Update Swift Version
22

33
on:
4-
push:
5-
branches: ["main"]
64
pull_request:
75
types: [opened, reopened, synchronize]
86
schedule:
@@ -81,10 +79,10 @@ jobs:
8179
--base "main"
8280
else
8381
echo "PR already exists: #$pr"
84-
gh pr edit "$pr" --title "$title" --body "$body"
82+
gh pr edit --title "$title" --body "$body"
8583
fi
8684
87-
gh pr merge "$pr" --auto --squash
85+
gh pr merge --auto --squash
8886
8987
env:
9088
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)