generate what's new article #42
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: "generate what's new article" | |
on: | |
schedule: | |
- cron: "0 2 1 * *" # The first of every month at 2 AM | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: "The reason for running the workflow" | |
required: true | |
default: "Manual run" | |
permissions: | |
contents: read | |
jobs: | |
create-what-is-new: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: "Print manual run reason" | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
run: | | |
echo "Reason: ${{ github.event.inputs.reason }}" | |
- name: Azure OpenID Connect | |
id: azure-oidc-auth | |
uses: dotnet/docs-tools/.github/actions/oidc-auth-flow@5e8bcc78465d45a7544bba56509a1a69922b6a5a # main | |
with: | |
client-id: ${{ secrets.CLIENT_ID }} | |
tenant-id: ${{ secrets.TENANT_ID }} | |
audience: ${{ secrets.OSMP_API_AUDIENCE }} | |
- uses: dotnet/docs-tools/WhatsNew.Cli@5e8bcc78465d45a7544bba56509a1a69922b6a5a # main | |
env: | |
GitHubKey: ${{ secrets.GITHUB_TOKEN }} | |
AZURE_ACCESS_TOKEN: ${{ steps.azure-oidc-auth.outputs.access-token }} | |
with: | |
owner: dotnet | |
repo: docs | |
savedir: './docs/whats-new' | |
- name: create-pull-request | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f | |
with: | |
branch: create-whatsnew-pull-request/patch | |
title: "What's new article" | |
commit-message: 'Bot 🤖 generated "What''s new article"' | |
body: "Automated creation of What's new article." |