compute: resolve permadiff for display_name
in google_compute_organization_security_policy
#30857
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
name: reassign-reviewer | |
permissions: read-all | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
reassign-reviewer: | |
if: ${{ github.event.issue.pull_request }} | |
runs-on: ubuntu-22.04 | |
permissions: | |
pull-requests: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Read comment | |
id: read-comment | |
uses: actions-ecosystem/action-regex-match@d50fd2e7a37d0e617aea3d7ada663bd56862b9cc # v2.0.2 | |
with: | |
text: ${{ github.event.comment.body }} | |
regex: '.*@modular-magician (?:re)?assign[- ]review(?:er)? ?@?([a-zA-Z0-9-_]*).*' | |
- name: Checkout Repository | |
if: steps.read-comment.outputs.match != '' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.2 | |
with: | |
ref: main | |
- name: Set up Go | |
if: steps.read-comment.outputs.match != '' | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: '^1.21' | |
- name: Build magician | |
if: steps.read-comment.outputs.match != '' | |
run: | | |
cd .ci/magician | |
go build . | |
- name: Run command | |
if: steps.read-comment.outputs.match != '' | |
run: .ci/magician/magician reassign-reviewer ${{ github.event.issue.number }} ${{ github.event.comment.user.login }} ${{ steps.read-comment.outputs.group1 }} |