Update PyTorch Labels in S3 #85
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 PyTorch Labels in S3 | |
on: | |
label: | |
workflow_dispatch: | |
concurrency: | |
group: 1 | |
cancel-in-progress: true | |
jobs: | |
update-labels-in-S3: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.repository == 'pytorch/pytorch' }} | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout PyTorch | |
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main | |
with: | |
fetch-depth: 1 | |
submodules: false | |
- name: configure aws credentials | |
id: aws_creds | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::308535385114:role/gha_workflow_update_pytorch_labels | |
aws-region: us-east-1 | |
- name: Update PyTorch labels list in S3 | |
run: | | |
python3 -m pip install boto3==1.19.12 | |
.github/scripts/export_pytorch_labels.py pytorch pytorch |