This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
add release branch linux-6.9.y #45
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: Update Known Issues | |
on: [push] | |
jobs: | |
update: | |
name: Update Known Issues | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.6] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install deps | |
run: | | |
python -m pip install --upgrade pip black | |
pip install -r requirements.txt | |
- name: Linting | |
run: | | |
black --check . | |
- name: Sync known-issues | |
env: | |
QA_REPORTS_KNOWN_ISSUE_TOKEN: ${{ secrets.QA_REPORTS_KNOWN_ISSUE_TOKEN }} | |
run: | | |
./sync_known_issues.py -c *.yaml $@ |