This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
Add make sprint-data-import and issue-data-import to import github sprint and issue data to database #191
Workflow file for this run
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
# | |
# GitHub action to add labels to pull requests. | |
# | |
# Label rules are configured in .github/labeler.xml. | |
# | |
# See https://github.com/marketplace/actions/labeler | |
# | |
name: Pull Request Labeler | |
on: | |
pull_request_target: | |
types: [opened, reopened, synchronize] | |
jobs: | |
label: | |
name: Labeler | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v4 |