Skip to content

Daily release/10/02/2024/morning #2595

Daily release/10/02/2024/morning

Daily release/10/02/2024/morning #2595

name: whats-new
on:
workflow_dispatch:
pull_request:
types:
- opened
branches:
- main
env:
BOT_NAME: svc-docs-eng-opensource-bot
BOT_EMAIL: [email protected]
jobs:
update-whats-new-ids:
name: generates in-product announcements (optional)
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
ref: develop
persist-credentials: false
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 22.4
- name: Install dependencies
run: yarn add [email protected] [email protected]
- name: Generate new IDs
run: yarn run generate-whatsnew-ids
- name: Commit changes
id: commit-changes
run: |
git config --local user.email "${{ env.BOT_EMAIL }}"
git config --local user.name "${{ env.BOT_NAME }}"
git add ./src/data/whats-new-ids.json
git diff-index --quiet HEAD ./src/data/whats-new-ids.json || git commit -m 'chore(whats-new-ids): updated ids'
echo "commit=true" >> $GITHUB_OUTPUT
# Push directly to the `develop` branch so we get the changes included in the release PR
- name: Push Commit
if: steps.commit-changes.outputs.commit == 'true'
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.DOCS_ENG_BOT_TOKEN }}
branch: develop