chore(deps): update dependency autoprefixer to v10.4.20 (#2986) #447
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: Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
# Prevents changesets action from creating a PR on forks | |
if: github.repository == 'adyen/adyen-web' | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 20.12.2 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.12.2 | |
- name: Install Dependencies | |
run: yarn | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
version: yarn run version | |
commit: '[ci] release ${{ github.ref_name }}' | |
title: '[ci] Release ${{ github.ref_name }}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |