Skip to content

Commit 4dd5150

Browse files
committed
Create pr CI job for auto-merging PRs
1 parent a2ec605 commit 4dd5150

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,28 @@ env:
1616

1717
jobs:
1818

19+
################
20+
# Pull Request #
21+
################
22+
23+
pr:
24+
if: ${{ github.event_name == 'pull_request'
25+
&& !contains(github.event.head_commit.message, '[skip ci]') }}
26+
needs:
27+
- clippy
28+
- example
29+
- feature
30+
- release-check
31+
- rustfmt
32+
- test
33+
- wasm
34+
runs-on: ubuntu-latest
35+
steps:
36+
- run: true
37+
38+
39+
40+
1941
##########################
2042
# Linting and formatting #
2143
##########################

0 commit comments

Comments
 (0)