mirror of
https://github.com/stakater/Reloader.git
synced 2026-04-07 02:46:51 +00:00
Compare commits
1 Commits
master
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7580f87b54 |
2
.github/actions/loadtest/action.yml
vendored
2
.github/actions/loadtest/action.yml
vendored
@@ -209,7 +209,7 @@ runs:
|
|||||||
- name: Post PR comment
|
- name: Post PR comment
|
||||||
if: inputs.post-comment == 'true' && inputs.pr-number != ''
|
if: inputs.post-comment == 'true' && inputs.pr-number != ''
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
github-token: ${{ inputs.github-token }}
|
github-token: ${{ inputs.github-token }}
|
||||||
script: |
|
script: |
|
||||||
|
|||||||
8
.github/workflows/loadtest.yml
vendored
8
.github/workflows/loadtest.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Add reaction to comment
|
- name: Add reaction to comment
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
await github.rest.reactions.createForIssueComment({
|
await github.rest.reactions.createForIssueComment({
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Get PR details
|
- name: Get PR details
|
||||||
id: pr
|
id: pr
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const pr = await github.rest.pulls.get({
|
const pr = await github.rest.pulls.get({
|
||||||
@@ -89,7 +89,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Add success reaction
|
- name: Add success reaction
|
||||||
if: steps.loadtest.outputs.status == 'pass'
|
if: steps.loadtest.outputs.status == 'pass'
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
await github.rest.reactions.createForIssueComment({
|
await github.rest.reactions.createForIssueComment({
|
||||||
@@ -101,7 +101,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Add failure reaction
|
- name: Add failure reaction
|
||||||
if: steps.loadtest.outputs.status == 'fail'
|
if: steps.loadtest.outputs.status == 'fail'
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v8
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
await github.rest.reactions.createForIssueComment({
|
await github.rest.reactions.createForIssueComment({
|
||||||
|
|||||||
Reference in New Issue
Block a user