Skip to content

Commit

Permalink
update.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Feb 17, 2024
1 parent 3e40dae commit d06ecff
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Post Release Jobs
name: Post Release PR

on:
push:
Expand All @@ -24,7 +24,7 @@ jobs:
run: |
echo "NEW_VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
echo "NEW_BRANCH=release-${{ github.event.release.tag_name }}" >> $GITHUB_ENV
echo "COMMIT_MSG=\"feat(docs|fw): release EEST ${{ github.event.release.tag_name }}\"" >> $GITHUB_ENV
echo "COMMIT_MSG=feat(docs|fw): release EEST $NEW_VERSION" >> $GITHUB_ENV
- name: Update version in setup.cfg
run: |
Expand All @@ -36,10 +36,9 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ env.NEW_BRANCH }}
commit-message: "${{ env.COMMIT_MSG }}"
title: "${{ env.COMMIT_MSG }}"
commit-message: ${{ env.COMMIT_MSG }}
title: ${{ env.COMMIT_MSG }}
body: |
## 🗒️ Description
Post ${{ env.COMMIT_MSG }} release changes.
base: main

base: main

0 comments on commit d06ecff

Please sign in to comment.