v1.267.0 #45
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
# This workflow is used to perform repository updates after a | |
# production release has been created. | |
name: Post Release Updates | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
post-release-updates: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Perform updates | |
uses: ./.github/actions/post-release-updates | |
with: | |
github_login: ${{ secrets.BROWSER_GITHUB_BOT_NAME }} | |
github_token: ${{ secrets.BROWSER_GITHUB_BOT_INTERNAL_PAT }} | |
github_email: ${{ secrets.BROWSER_GITHUB_BOT_EMAIL }} |