Update .github/workflows/release-prs.yml

This commit is contained in:
Graham Christensen 2023-05-22 16:06:24 -04:00 committed by GitHub
parent 6f8baf4345
commit bbaeca10a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,13 @@ jobs:
concurrency: release concurrency: release
# Only intra-repo PRs are allowed to have PR artifacts uploaded # Only intra-repo PRs are allowed to have PR artifacts uploaded
if: github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-actions-cache' && contains(github.event.pull_request.labels.*.name, 'upload to s3') # We only want to trigger once the upload once in the case the upload label is added, not when any label is added
if: |
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/nix-actions-cache'
&& (
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3')
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3'))
)
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
id-token: write # In order to request a JWT for AWS auth id-token: write # In order to request a JWT for AWS auth