Create pr CI job for auto-merging PRs

This commit is contained in:
tyranron 2022-05-25 17:58:38 +02:00
parent a2ec605732
commit 4dd5150bcb
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0

View file

@ -16,6 +16,28 @@ env:
jobs:
################
# Pull Request #
################
pr:
if: ${{ github.event_name == 'pull_request'
&& !contains(github.event.head_commit.message, '[skip ci]') }}
needs:
- clippy
- example
- feature
- release-check
- rustfmt
- test
- wasm
runs-on: ubuntu-latest
steps:
- run: true
##########################
# Linting and formatting #
##########################