Skip to content

Commit a1c5111

Browse files
committed
Fix events variable in prepare-release-pr.yml
1 parent f1a1de2 commit a1c5111

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prepare-release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
pip install --upgrade setuptools tox
3333
3434
- name: Prepare release PR (minor/patch release)
35-
if: github.event.inputs.branch.major == 'no'
35+
if: github.event.inputs.major == 'no'
3636
run: |
3737
tox -e prepare-release-pr -- ${{ github.event.inputs.branch }} ${{ secrets.chatops }}
3838
3939
- name: Prepare release PR (major release)
40-
if: github.event.inputs.branch.major == 'yes'
40+
if: github.event.inputs.major == 'yes'
4141
run: |
4242
tox -e prepare-release-pr -- ${{ github.event.inputs.branch }} ${{ secrets.chatops }} --major

0 commit comments

Comments
 (0)