adding Mentoring WG meeting minutes for Oct 17, 2024 #849
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
# This workflow is based on github action official label action v4. | |
# This workflow action is triggered on pull request event(on both fork & inside repo) | |
# Labels will be applied based on filepath modification in PR. | |
# This workflow uses a regex based labeling config file(.github/labeler.yml) to take labeling decision. | |
name: "PR Labeler" | |
on: | |
- pull_request_target | |
jobs: | |
label: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: ".github/labeler.yml" | |
sync-labels: false |