Skip to content
Merged
Changes from 2 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/validate-pir-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ name: Check version equality on release branch

on:
create:
branches:
- 'release/**'
workflow_dispatch:

jobs:
check-version-and-create-issue:
runs-on: ubuntu-latest
if: github.ref_type == 'branch'
if: ${{ github.ref_type == 'branch' && startsWith(github.ref, 'refs/heads/release/') && github.repository_owner == 'PaddlePaddle' }}
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
Loading