mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
MInor, adds a linter that ensures that all jobs run on pull_request, schedule, push etc have a `if: github.repository_owner == 'pytorch'` or are dependent on a job that has that check There is also a setting in Github repos that can disable all workflows for that repo A lot of these are unnecessary because many jobs use reusable workflows that have that check. However, this is a one time change so I'm not that bothered Unfortunately I can't put this at the workflow level, which would make this better Lots of weird string parsing Pull Request resolved: https://github.com/pytorch/pytorch/pull/138849 Approved by: https://github.com/malfet
31 lines
828 B
YAML
31 lines
828 B
YAML
name: Docathon Labels Sync
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, synchronize, edited]
|
|
branches: [main]
|
|
|
|
jobs:
|
|
check-labels:
|
|
if: github.repository_owner == 'pytorch'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install requests==2.32.3
|
|
pip install PyGithub==2.3.0
|
|
- name: Run Python script
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: python ./.github/scripts/docathon-label-sync.py ${{ github.event.pull_request.number }}
|