diff --git a/.github/workflows/after-branch-commit.yml b/.github/workflows/after-branch-commit.yml index eb710b90c..8cfd69c42 100644 --- a/.github/workflows/after-branch-commit.yml +++ b/.github/workflows/after-branch-commit.yml @@ -40,6 +40,14 @@ jobs: git push fi + update-draft-release: + if: github.repository == 'oncokb/oncokb-transcript' + runs-on: ubuntu-latest + steps: + # Drafts your next Release notes as Pull Requests are merged into "master" + - uses: release-drafter/release-drafter@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} update-pom: needs: [check-version-level-and-update] if: github.repository == 'oncokb/oncokb-transcript' diff --git a/.github/workflows/release-management.yml b/.github/workflows/release-management.yml deleted file mode 100644 index a6002e819..000000000 --- a/.github/workflows/release-management.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Release Management - -on: - workflow_run: - workflows: [After branch commit] - branches: - - rc - types: - - completed - -jobs: - update_draft_release: - if: github.repository == 'oncokb/oncokb-transcript' && ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - steps: - # Drafts your next Release notes as Pull Requests are merged into "master" - - uses: release-drafter/release-drafter@v5 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}