Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- jy/add-release-check-action | |
schedule: | |
- cron: '0 9 * * *' # Run daily at 9am | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Always checkout the main branch | |
ref: main | |
# Do a deep checkout | |
fetch-depth: 0 | |
# Fetch all the release tags | |
fetch-tags: true | |
- name: Check for unreleased changes | |
id: get-diff-log | |
run: | | |
export LOG=`git log $(git describe --tags --abbrev=0)..main --pretty=format:'- %s – @%al.' --no-merges` | |
echo "LOG<<EOF" >> $GITHUB_ENV | |
echo "$LOG" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: Unreleased changes Slack Report | |
uses: ravsamhq/notify-slack-action@v2 | |
with: | |
status: ${{ job.status }} | |
notify_when: 'success' | |
notification_title: 'Unreleased changes in the CLI' | |
message_format: '*Unreleased CLI Changes* \n ${{ env.LOG }}' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }} |