feat(biome_css_analyze): keyframe-block-no-duplicate-selectors (#2534) #29
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
on: | |
push: | |
branches: [ main ] | |
name: Create Release PR | |
permissions: | |
actions: write | |
contents: write | |
pull-requests: write | |
jobs: | |
prepare-release: | |
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config --global user.name GitHub Actions | |
git config user.email github-actions@github.com | |
- uses: knope-dev/action@v2.1.0 | |
with: | |
version: 0.16.2 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: knope prepare-release --verbose | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
continue-on-error: true |