Daily release/8 16 24 afternoon #2510
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
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 |