mirror of
https://github.com/irongut/CodeCoverageSummary.git
synced 2026-05-14 22:20:13 +02:00
3a1aab172a
Bumps [actions/labeler](https://github.com/actions/labeler) from 472c5d3aaacde439785e94966eb2e545627f4935 to 4.0.1. This release includes the previously tagged commit. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/472c5d3aaacde439785e94966eb2e545627f4935...e54e5b338fbd6e6cdb5d60f51c22335fc57c401e) --- updated-dependencies: - dependency-name: actions/labeler dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
865 B
YAML
31 lines
865 B
YAML
# Applies labels to pull requests based on paths & files modified in the pull request.
|
|
#
|
|
# .github/labeler.yml contains the list of labels & files / folders to match, see:
|
|
# https://github.com/actions/labeler/blob/master/README.md
|
|
|
|
name: PR Labeler
|
|
on:
|
|
pull_request_target:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
label:
|
|
permissions:
|
|
contents: read # for actions/labeler to determine modified files
|
|
pull-requests: write # for actions/labeler to add labels to PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@dd2c410b088af7c0dc8046f3ac9a8f4148492a95
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
api.github.com:443
|
|
|
|
- uses: actions/labeler@e54e5b338fbd6e6cdb5d60f51c22335fc57c401e
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|