Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/pr-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Auto-assign PR to author
if: github.event.action == 'opened' || github.event.action == 'reopened'
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Store thread_ts
if: (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'ready_for_review') && !github.event.pull_request.draft
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand All @@ -156,7 +156,7 @@ jobs:
- name: Get thread_ts for reviewer added
if: github.event.action == 'review_requested'
id: get-thread-ts-reviewer
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand All @@ -176,7 +176,7 @@ jobs:
- name: Check if re-review
if: github.event.action == 'review_requested'
id: check-re-review
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
- name: Get thread_ts for PR close
if: github.event.action == 'closed'
id: get-thread-ts-close
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
- name: Get thread_ts for review
if: github.event.action == 'submitted'
id: get-thread-ts-review
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand Down Expand Up @@ -300,7 +300,7 @@ jobs:
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}

- name: Label PR based on title
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
github-token: ${{ steps.bot_token.outputs.token }}
script: |
Expand Down
Loading