Upgrade EKS addons for 1.26 in Analytical Platform production cluster #2847
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: Pull request assigner | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
types: | |
- opened | |
permissions: read-all | |
jobs: | |
pull-request-assigner: | |
if: github.actor != 'dependabot[bot]' | |
name: Pull request assigner | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Pull request assigner | |
id: pull_request_assigner | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
github.rest.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
assignees: [context.actor] | |
}) |