We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the main.workflow way of configuring actions no longer works, you need something like the below in a .github/workflows/flake8yourpr.yml
.github/workflows/flake8yourpr.yml
name: Flake8 your PR on: [pull_request] jobs: flake8-your-pr: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - uses: tayfun/flake8-your-pr@master env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the main.workflow way of configuring actions no longer works, you need something like the below in a
.github/workflows/flake8yourpr.yml
The text was updated successfully, but these errors were encountered: