Add new raffle type that only allows T3 subscribers to enter the raffle #424
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: Lint PR | |
on: [pull_request_target] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.base.ref }} | |
- uses: psf/black@stable | |
with: | |
options: "--preview" | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Apply Black formatting changes |