Skip to content

Commit

Permalink
⚙️ Modify pre_merge workflow (#807)
Browse files Browse the repository at this point in the history
* Modify pre_mergge

* Add cs-flow model to changelog
  • Loading branch information
ashwinvaidya17 authored Dec 22, 2022
1 parent 755bf38 commit 8a4e46c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pre_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ on:
push:
branches: [main]
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
workflow_dispatch: # run on request (no need for PR)

# This is what will cancel the workflow concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Code-Quality-Checks:
runs-on: [self-hosted, linux, x64]
Expand All @@ -19,6 +29,7 @@ jobs:
Tox:
runs-on: [self-hosted, linux, x64]
needs: Code-Quality-Checks
if: github.event.pull_request.draft == false
strategy:
max-parallel: 1
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Added

- ✨ Add CSFlow model (<https://github.com/openvinotoolkit/anomalib/pull/657>)
- Log loss for existing trainable models (<https://github.com/openvinotoolkit/anomalib/pull/804>)
- Add section for community project (<https://github.com/openvinotoolkit/anomalib/pull/768>)
- ✨ Add torchfx feature extractor (<https://github.com/openvinotoolkit/anomalib/pull/675>)
Expand Down

0 comments on commit 8a4e46c

Please sign in to comment.