mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-08 10:44:19 -04:00
Prep for Hotfix (#2363)
This commit is contained in:
parent
30f1cd20a0
commit
33412e397b
10
.github/workflows/develop-workflow.yml
vendored
10
.github/workflows/develop-workflow.yml
vendored
@ -6,8 +6,18 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ 'develop', '!release/**' ]
|
branches: [ 'develop', '!release/**' ]
|
||||||
types: [ closed ]
|
types: [ closed ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
debug:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Debug Info
|
||||||
|
run: |
|
||||||
|
echo "Event Name: ${{ github.event_name }}"
|
||||||
|
echo "Ref: ${{ github.ref }}"
|
||||||
|
echo "Not Contains Release: ${{ !contains(github.head_ref, 'release') }}"
|
||||||
|
echo "Matches Develop: ${{ github.ref == 'refs/heads/develop' }}"
|
||||||
build:
|
build:
|
||||||
name: Upload Kavita.Common for Version Bump
|
name: Upload Kavita.Common for Version Bump
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
10
.github/workflows/release-workflow.yml
vendored
10
.github/workflows/release-workflow.yml
vendored
@ -6,8 +6,18 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ 'develop' ]
|
branches: [ 'develop' ]
|
||||||
types: [ closed ]
|
types: [ closed ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
debug:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Debug Info
|
||||||
|
run: |
|
||||||
|
echo "Event Name: ${{ github.event_name }}"
|
||||||
|
echo "Ref: ${{ github.ref }}"
|
||||||
|
echo "Not Contains Release: ${{ !contains(github.head_ref, 'release') }}"
|
||||||
|
echo "Matches Develop: ${{ github.ref == 'refs/heads/develop' }}"
|
||||||
if_merged:
|
if_merged:
|
||||||
if: github.event.pull_request.merged == true && contains(github.head_ref, 'release')
|
if: github.event.pull_request.merged == true && contains(github.head_ref, 'release')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user