build(deps): bump the build group across 1 directory with 5 updates #58
Workflow file for this run
This file contains hidden or 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
| # Maintained in https://github.com/coreos/repo-templates | |
| # Do not edit downstream. | |
| name: PR Gating Action | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request: | |
| types: [opened, labeled, unlabeled] | |
| jobs: | |
| handle-event: | |
| if: >- | |
| github.event_name == 'pull_request' || | |
| (github.event_name == 'issue_comment' && github.event.issue.pull_request) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Run Owners Action | |
| uses: coreos/owners-file-action@v2.1 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| owners-file: "OWNERS" | |
| env: | |
| AUTO_MERGE: false | |
| MERGE_STRATEGY: merge | |
| AUTO_ASSIGN_REVIEWERS: 2 | |
| AUTO_ASSIGN_APPROVERS: 1 |