Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Cleanup workflow (drop 0.7.x branch from main workflow, it's handled separately) #92

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ on:
push:
branches:
- main
- 0.7.x # we're going to maintain 0.7.x version until the adoption of 0.8.x will be completed
pull_request:
branches:
- main
- 0.7.x # we're going to maintain 0.7.x version until the adoption of 0.8.x will be completed

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -70,7 +68,7 @@ jobs:
name: release-plz
runs-on: ubuntu-latest
needs: [check, rustclippy, rustfmt, test]
if: ${{ github.event_name != 'pull_request' }} # Specify the branch condition
if: github.ref == 'refs/heads/main' # Specify the branch condition
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
Loading