Bump @storybook/html from 8.3.5 to 8.4.4 #613
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
# Attempt to intelligently auto-label pull requests. | |
# Most configuration happens in .github/autolabeler.config.yml. | |
# Powered by Release Drafter: https://github.com/marketplace/actions/release-drafter | |
name: Autolabeler | |
# Run on initial opening or reopening of a PR (not on every subsequent commit to one), | |
# if the PR is targeting the main branch. | |
on: | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- main | |
jobs: | |
label-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v5 | |
with: | |
config-name: 'autolabeler.config.yml' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |