diff options
| author | Max Isom <[email protected]> | 2021-12-18 12:12:38 -0600 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-12-18 12:12:38 -0600 |
| commit | d4827b86d5c848c68cb9868bfde28a2db932c630 (patch) | |
| tree | 08e2f214f7d4a2a01ee0edad165a4f48460063dd /.github/workflows | |
| parent | 86605f76a56823721af3595a2073133b7b3f8108 (diff) | |
| download | muse-d4827b86d5c848c68cb9868bfde28a2db932c630.tar.xz muse-d4827b86d5c848c68cb9868bfde28a2db932c630.zip | |
Fix PR workflows
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pr.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 48646e6..2a7a117 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -1,10 +1,6 @@ name: PR Workflow -on: - pull_request: - types: [opened, synchronize, ready_for_review, edited, closed] - branches: - - master +on: pull_request_target jobs: release: @@ -21,9 +17,9 @@ jobs: uses: actions/cache@v2 with: path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} + key: ${{ runner.os }}-buildx-prs-${{ github.sha }} restore-keys: | - ${{ runner.os }}-buildx- + ${{ runner.os }}-buildx-prs- - name: Login to DockerHub uses: docker/login-action@v1 |
