Update Konflux references #1148
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
# Add labels to pull requests against master | |
# uses logic in .github/labeler.yml | |
--- | |
name: "Add labels to pull request" | |
on: | |
pull_request_target: | |
branches: [ "master" ] | |
types: [ "opened" ] | |
jobs: | |
triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v5 | |
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |