Replace git_data_dirs #771
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
# SPDX-FileCopyrightText: Helmholtz Centre for Environmental Research (UFZ) | |
# SPDX-FileCopyrightText: Helmholtz-Zentrum Dresden-Rossendorf (HZDR) | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
name: "Pull Request Labeler" | |
on: | |
pull_request_target: | |
types: | |
- "labeled" | |
- "unlabeled" | |
- "opened" | |
- "edited" | |
- "synchronize" | |
jobs: | |
labeler: | |
runs-on: "ubuntu-24.04" | |
permissions: | |
contents: "read" | |
pull-requests: "write" | |
steps: | |
- name: "Check out the codebase." | |
uses: "actions/checkout@v4" | |
- uses: "actions/labeler@v5.0.0" | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |