feat(prisma)!: Prisma v7 #5109
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: 🏷 Require release label | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| # We often cancel concurrent jobs, but this job is so fast it wouldn't really | |
| # save any resources. It just complicates things (GitHub's runners would | |
| # sometimes get confused, and get stuck waiting on an instance of this job that | |
| # was canceled). | |
| # No top level permissions are required for this workflow | |
| permissions: {} | |
| jobs: | |
| require-release-label: | |
| name: 🏷 Require release label | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: read | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: ⬢ Set up Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: 24 | |
| - name: ✅ Check release label requirement | |
| uses: ./.github/actions/require-release-label-or-cc-message | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |