Skip to content

Commit

Permalink
change trigger condition (#7482)
Browse files Browse the repository at this point in the history
  • Loading branch information
AllyW committed Apr 11, 2024
1 parent 081693f commit 4f4ed09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/VersionCalPRComment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ on:
- main
paths:
- '**.py'
- '!**/test_*.py'

permissions:
pull-requests: write

jobs:
version-cal:
if: contains(github.event.pull_request.labels.*.name, 'auto-cal-version')
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-cal-version') }}
runs-on: ubuntu-latest
steps:
- name: Set Init Version Message
Expand Down

0 comments on commit 4f4ed09

Please sign in to comment.