Skip to content

Commit

Permalink
Create pr CI job for auto-merging PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed May 26, 2022
1 parent cf055ac commit c3e8de4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- feature
- msrv
- rustdoc
- rustfmt
- test
- test-book
runs-on: ubuntu-latest
steps:
- run: true




##########################
# Linting and formatting #
##########################
Expand Down

0 comments on commit c3e8de4

Please sign in to comment.