build(deps): bump Externals/sse2neon from f1bc16e to 7880bd4
#2093
Workflow file for this run
This file contains hidden or 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: "Pull Request Labeler" | |
| on: | |
| pull_request_target: | |
| pull_request_review: | |
| types: submitted | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: on new pull request | |
| if: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.opened == true || github.event.pull_request.reopened == true }} | |
| uses: actions/labeler@v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/labeler_on_new_pr.yml | |
| - name: on any pull request | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| uses: actions/labeler@v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/labeler.yml | |
| - name: on pull request approval | |
| if: ${{ github.event_name == 'pull_request_review' && github.event.review.state == 'approved' }} | |
| uses: actions/labeler@v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/labeler_on_pr_approved.yml | |
| - name: on pull request merged | |
| if: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.merged == true }} | |
| uses: actions/labeler@v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: .github/labeler_on_pr_merged.yml |