ci: Use check_run

Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2021-07-24 13:31:19 +02:00
parent c0ae019bca
commit 454d818866
No known key found for this signature in database
GPG Key ID: 228A77789D71A6E2

View File

@ -2,40 +2,42 @@
name: "Metadata: Label pull requests CI status" name: "Metadata: Label pull requests CI status"
on: on:
workflow_run: check_run:
workflows:
- "Pre-commit consistency check"
types: types:
- completed - completed
# workflow_run:
# workflows:
# - "Pre-commit consistency check"
# types:
# - completed
jobs: jobs:
get-info: get-info:
name: "Get information about the source run" name: "Get information about the source run"
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
outputs: # outputs:
pullRequestNumber: ${{ steps.source-run-info.outputs.pullRequestNumber }} # pullRequestNumber: ${{ steps.source-run-info.outputs.pullRequestNumber }}
steps: steps:
- name: "Get information about the origin 'CI' run"
uses: potiuk/get-workflow-origin@v1_3
id: source-run-info
with:
token: ${{ secrets.GITHUB_TOKEN }}
sourceRunId: ${{ github.event.workflow_run.id }}
label-precommit:
name: Label pre-commit status
runs-on: ubuntu-20.04
if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }}
needs:
- get-info
steps:
- uses: getsentry/action-github-app-token@v1
id: get-app-token
with:
app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
- uses: hmarr/debug-action@v2 - uses: hmarr/debug-action@v2
# - name: "Get information about the origin 'CI' run"
# uses: potiuk/get-workflow-origin@v1_3
# id: source-run-info
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# sourceRunId: ${{ github.event.workflow_run.id }}
# label-precommit:
# name: Label pre-commit status
# runs-on: ubuntu-20.04
# if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }}
# needs:
# - get-info
# steps:
# - uses: getsentry/action-github-app-token@v1
# id: get-app-token
# with:
# app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
# private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
# # CI Passed # # CI Passed
# - name: "add label: ok" # - name: "add label: ok"
@ -43,6 +45,7 @@ jobs:
# if: ${{ github.event.workflow_run.conclusion == 'success' }} # if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with: # with:
# github_token: ${{ steps.get-app-token.outputs.token }} # github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok" # labels: "precommit:ok"
# - name: "remove label: failed" # - name: "remove label: failed"
@ -50,6 +53,7 @@ jobs:
# if: ${{ github.event.workflow_run.conclusion == 'success' }} # if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with: # with:
# github_token: ${{ steps.get-app-token.outputs.token }} # github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed" # labels: "precommit:failed"
# # CI Failed # # CI Failed
@ -58,6 +62,7 @@ jobs:
# if: ${{ github.event.workflow_run.conclusion == 'failure' }} # if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with: # with:
# github_token: ${{ steps.get-app-token.outputs.token }} # github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed" # labels: "precommit:failed"
# - name: "remove label: ok" # - name: "remove label: ok"
@ -65,4 +70,99 @@ jobs:
# if: ${{ github.event.workflow_run.conclusion == 'failure' }} # if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with: # with:
# github_token: ${{ steps.get-app-token.outputs.token }} # github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok"
# label-lint:
# name: Label lint status
# runs-on: ubuntu-20.04
# if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }}
# needs:
# - get-info
# steps:
# - uses: getsentry/action-github-app-token@v1
# id: get-app-token
# with:
# app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
# private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
# # CI Passed
# - name: "add label: ok"
# uses: actions-ecosystem/action-add-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok"
# - name: "remove label: failed"
# uses: actions-ecosystem/action-remove-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed"
# # CI Failed
# - name: "add label: failed"
# uses: actions-ecosystem/action-add-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed"
# - name: "remove label: ok"
# uses: actions-ecosystem/action-remove-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok"
# label-precommit:
# name: Label pre-commit status
# runs-on: ubuntu-20.04
# if: ${{ github.event.workflow.name == 'Pre-commit consistency check' }}
# needs:
# - get-info
# steps:
# - uses: getsentry/action-github-app-token@v1
# id: get-app-token
# with:
# app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
# private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
# # CI Passed
# - name: "add label: ok"
# uses: actions-ecosystem/action-add-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok"
# - name: "remove label: failed"
# uses: actions-ecosystem/action-remove-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed"
# # CI Failed
# - name: "add label: failed"
# uses: actions-ecosystem/action-add-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:failed"
# - name: "remove label: ok"
# uses: actions-ecosystem/action-remove-labels@v1
# if: ${{ github.event.workflow_run.conclusion == 'failure' }}
# with:
# github_token: ${{ steps.get-app-token.outputs.token }}
# number: ${{ needs.get-info.outputs.pullRequestNumber }}
# labels: "precommit:ok" # labels: "precommit:ok"