Skip to content

docs, footer, app-layout: update copyright from 2024 to 2025 (#2081) #1734

docs, footer, app-layout: update copyright from 2024 to 2025 (#2081)

docs, footer, app-layout: update copyright from 2024 to 2025 (#2081) #1734

Workflow file for this run

name: Release
on:
push:
branches:
- develop
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 22.15.1
uses: actions/setup-node@v4
with:
node-version: 22.15.1
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}