Run draft release when tests are skipped

This commit is contained in:
Daniel A. Wozniak 2024-12-11 17:24:28 -07:00 committed by Daniel Wozniak
parent b08ac042b6
commit 4305c4d90e
2 changed files with 6 additions and 0 deletions

View file

@ -649,6 +649,9 @@ jobs:
draft-release:
name: Draft Github Release
if: |
always() && (needs.test.result == 'sucess' || needs.test.result == 'skipped') &&
(needs.test-pkg.result == 'sucess' || needs.test-pkg.result == 'skipped')
permissions:
contents: write
pull-requests: read

View file

@ -178,6 +178,9 @@ concurrency:
draft-release:
name: Draft Github Release
if: |
always() && (needs.test.result == 'sucess' || needs.test.result == 'skipped') &&
(needs.test-pkg.result == 'sucess' || needs.test-pkg.result == 'skipped')
permissions:
contents: write
pull-requests: read