feat: setup blobs environment to be able to use getDeployStore in user code #4408
Workflow file for this run
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: Label PR | |
on: | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
label-pr: | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
pr: | |
[ | |
{ prefix: 'fix', type: 'bug' }, | |
{ prefix: 'chore', type: 'chore' }, | |
{ prefix: 'test', type: 'chore' }, | |
{ prefix: 'ci', type: 'chore' }, | |
{ prefix: 'feat', type: 'feature' }, | |
{ prefix: 'security', type: 'security' }, | |
] | |
steps: | |
- uses: netlify/[email protected] | |
if: startsWith(github.event.pull_request.title, matrix.pr.prefix) | |
with: | |
token: '${{ secrets.GITHUB_TOKEN }}' | |
label: 'type: ${{ matrix.pr.type }}' |