Fix client-side caching of PARTY_ENABLE prop #106
Workflow file for this run
This file contains hidden or 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: Enforce PR labels | |
| on: | |
| pull_request: | |
| types: [labeled, unlabeled, opened] | |
| jobs: | |
| enforce-label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.9.1 | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: yogevbd/enforce-label-action@2.1.0 | |
| with: | |
| REQUIRED_LABELS_ANY: "bugfix,enhancement,skip-changelog" | |
| REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one of the following labels ['bugfix', 'enhancement', 'skip-changelog']" | |
| BANNED_LABELS: "do-not-merge" |