mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

only run labelers for core team (#3426)

* use `pull_request_target` instead of `pull_request`

* adjust

* only run for core team

authored by hailey.at and committed by

GitHub c80dcc56 443dfb5c

+7 -8
+7 -8
.github/workflows/pull-request-commit.yml
··· 13 13 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} 14 14 cancel-in-progress: true 15 15 16 + permissions: 17 + pull-requests: write 18 + actions: write 19 + contents: read 20 + 16 21 jobs: 17 22 webpack-analyzer: 18 23 runs-on: ubuntu-22.04 19 - if: ${{ github.event_name == 'pull_request' }} 20 - permissions: 21 - pull-requests: write 22 - actions: write 24 + if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} 23 25 steps: 24 26 - name: ⬇️ Checkout 25 27 uses: actions/checkout@v4 ··· 94 96 95 97 test-suite-fingerprint: 96 98 runs-on: ubuntu-22.04 97 - if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }} 99 + if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' }} 98 100 concurrency: fingerprint-${{ github.event_name != 'pull_request' && 'main' || github.run_id }} 99 - permissions: 100 - pull-requests: write 101 - actions: write 102 101 steps: 103 102 - name: ⬇️ Checkout 104 103 uses: actions/checkout@v4