Skip to content

v1.278.2

v1.278.2 #71

# 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
env:
LAMBDA_USERNAME: ${{ secrets.LAMBDA_USERNAME }}
LAMBDA_ACCESS_KEY: ${{ secrets.LAMBDA_ACCESS_KEY }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref || github.event.head_commit.ref }}
- uses: actions/setup-node@v4
with:
node-version: 22.11.0 # See package.json for the stable node version that works with our testing. Do not change this unless you know what you are doing as some node versions do not play nicely with our testing server.
- 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 }}