From b73767f24502a5b5556f769892070d8033c13f31 Mon Sep 17 00:00:00 2001 From: Kelly Sovacool Date: Mon, 6 Nov 2023 13:31:21 -0500 Subject: [PATCH 1/2] docs: prepare release v0.1.1 --- CHANGELOG.md | 6 +++--- VERSION | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d1a19..c4ee400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -## development version +## CRUISE 0.1.1 ### Bug fixes - All scripts in the bin directory are now made executable for all users on biowulf (#25). -- Libraries are now copied to the assets directory (#26). +- Data directories are copied recursively during python package installation (#26). -## CRUISE v0.1.0 +## CRUISE 0.1.0 This is the first release of CRUISE 🎉 diff --git a/VERSION b/VERSION index cafa08a..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1-dev.1 +0.1.1 From b37820ffa73359cc9ece1c89cc2af3a5f098a4f0 Mon Sep 17 00:00:00 2001 From: Kelly Sovacool Date: Mon, 6 Nov 2023 13:33:45 -0500 Subject: [PATCH 2/2] ci: use build-status job for branch protection check --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aeff185..7a648fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,3 +36,15 @@ jobs: cd tests/ cruise init cruise run -profile ci_stub -stub + + build-status: # https://github.com/orgs/community/discussions/4324#discussioncomment-3477871 + runs-on: ubuntu-latest + needs: [build] + if: always() + steps: + - name: Successful build + if: ${{ !(contains(needs.*.result, 'failure')) }} + run: exit 0 + - name: Failing build + if: ${{ contains(needs.*.result, 'failure') }} + run: exit 1