Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-yeager committed Sep 27, 2024
1 parent a0103fe commit b79f701
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/unreleaseChangesCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@ jobs:
id: get-diff-log
run: |
export MOST_RECENT_TAG=$(git describe --tags --abbrev=0);
echo $MOST_RECENT_TAG
export LOG=`git log $(MOST_RECENT_TAG)..main --pretty=format:'- %s – @%al.' --no-merges`
echo "MOST_RECENT_TAG=$MOST_RECENT_TAG" >> $GITHUB_ENV
echo $LOG
echo "MOST_RECENT_TAG<<EOF" >> $GITHUB_ENV
echo $MOST_RECENT_TAG >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "LOG<<EOF" >> $GITHUB_ENV
echo "$LOG" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
Expand Down

0 comments on commit b79f701

Please sign in to comment.