From 8b05b9b6665a60649616ebb10f1659e98dcaf840 Mon Sep 17 00:00:00 2001 From: michael-siek Date: Mon, 15 Jan 2024 18:59:29 -0500 Subject: [PATCH] ci: remove deprecated release candidate action --- .github/workflows/create-release.yml | 58 ---------------------------- 1 file changed, 58 deletions(-) delete mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml deleted file mode 100644 index 0c786637..00000000 --- a/.github/workflows/create-release.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: Create release candidate - -on: - workflow_dispatch: - inputs: - releaseLevel: - description: 'Release level: major, minor, or patch.' - required: true - default: 'patch' - -jobs: - create_release: - name: Create release - runs-on: ubuntu-latest - timeout-minutes: 3 - steps: - - name: Checkout repo - uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - fetch-depth: 0 - - - name: Run preparation script - run: bash .github/scripts/prepare_release.sh ${{ github.event.inputs.releaseLevel }} - env: - CHANGELOG_VERSION: ${{ secrets.CHANGELOG_VERSION }} - STD_VERSION_VERSION: ${{ secrets.STD_VERSION_VERSION }} - - - name: Get version for later steps - id: get-new-version - run: echo ::set-output name=version::$(node -pe 'require("./lerna.json").version') - - - name: Create release commit - run: | - git config user.name "${{ secrets.ADT_API_RELEASE_NAME }}" - git config user.email "${{ secrets.ADT_API_RELEASE_EMAIL }}" - git commit -am "chore: release v${{ steps.get-new-version.outputs.version }}" - # create-pull-request has no way of setting the target branch that won't also - # get rid of all commits (aside from the release commit). - # So, we have to be on master and manually grab all the changes. - # We do that by just telling git "master is now develop (+ the release commit)". - - name: Update local master from develop - run: | - commitHash="$(git log -1 --format='%H')" - git checkout master - git reset --hard "$commitHash" - - name: Create pull request - uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # tag=v5 - with: - token: ${{ secrets.GITHUB_TOKEN }} - branch: release - branch-suffix: timestamp - base: master - title: 'chore: release v${{ steps.get-new-version.outputs.version }}' - # If there are any changes not already committed, they will be added to - # a commit with this as the message. - # If there are no changes no commit will be created. - commit-message: 'chore: applying release changes'