udpate savefile 17.02.2024 #1771
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
name: 'Component Owners' | |
on: | |
# pull_request_target is suggested for projects where pull requests will be | |
# made from forked repositories. If pull_request is used in these cases, | |
# the github token will not have sufficient permission to update the PR. | |
pull_request_target: | |
permissions: | |
contents: read # to read changed files | |
issues: write # to read/write issue assignees | |
pull-requests: write # to read/write PR reviewers | |
jobs: | |
run_self: | |
runs-on: ubuntu-latest | |
name: Auto Assign Owners | |
steps: | |
- uses: volas/component-owners@main | |
with: | |
# default: .github/component_owners.yml | |
config-file: .github/COMPONENTOWNERS.yml | |
# default: ${{ github.token }} | |
repo-token: ${{ secrets.CODEOWNER_SECRET }} | |
# default: true | |
assign-owners: "false" | |
# default: true | |
request-owner-reviews: "true" |