Update license headers #5734
This file contains 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
# SPDX-FileCopyrightText: Copyright (C) Nicolas Lamirault <[email protected]> | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
# name: "Label PRs from globs" | |
# on: | |
# schedule: | |
# - cron: "0 * * * *" | |
# jobs: | |
# execute: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: jpmcb/[email protected] | |
# with: | |
# jobs: 'pr-labeler' | |
# github-token: "${{ secrets.GITHUB_TOKEN }}" | |
name: Project / Pull Request Labeler | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: [opened, reopened, edited] | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Monitor Actions | |
uses: GitHubSecurityLab/actions-permissions/monitor@v1 | |
with: | |
config: ${{ vars.PERMISSIONS_CONFIG }} | |
- uses: actions/[email protected] | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |