Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

ci: add a create-status-check workflow #210

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
15 changes: 15 additions & 0 deletions .github/workflows/create-status-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Create Status Check
on:
workflow_run:
workflows: [test] # pull_request workflow name
types:
- completed
jobs:
create-status-check:
runs-on: ubuntu-24.04
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[actionlint] reported by reviewdog 🐶
label "ubuntu-24.04" is unknown. available labels are "windows-latest", "windows-2022", "windows-2019", "windows-2016", "ubuntu-latest", "ubuntu-22.04", "ubuntu-20.04", "ubuntu-18.04", "macos-latest", "macos-12", "macos-12.0", "macos-11", "macos-11.0", "macos-10.15", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file [runner-label]

timeout-minutes: 10
permissions:
statuses: write # To update commit statuses
steps:
- uses: suzuki-shunsuke/status-check-workflow-run-action@79471ff024007dbc192e6ce0576f71960b1c144d # v0.1.1
Loading