infra: automate koji build and bodhi update actions with packit #498
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: Add PR labels automatically | |
on: | |
pull_request_target: | |
types: [opened] | |
# Without the check permission we are getting error - see more info Here | |
# https://github.com/actions/labeler/issues/12 | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
jobs: | |
add-label: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Add labels | |
uses: actions/labeler@v4 | |
with: | |
dot: true |