Skip to content

Latest commit

 

History

History
83 lines (66 loc) · 3.04 KB

README.ja.md

File metadata and controls

83 lines (66 loc) · 3.04 KB

Auto Cancel Redundant Job

CI Status codecov CodeFactor License: MIT

Read this in other languages: English, 日本語.

冗長ビルドを自動キャンセルする GitHub Actions です。

Table of Contents

Details

使用方法

on:
  repository_dispatch:
    types: [test]
  # push:
  # ...

name: Example
jobs:
  firstJob:
    name: First Job
    runs-on: ubuntu-latest
    steps:
        # この GitHub Actions をこの workflow の中でできるだけ早く少なくとも一度は使用してください。
      - uses: technote-space/auto-cancel-redundant-job@v1
        # Run any steps
      - name: any steps
        run: echo test
      # ...

  # Run any jobs
  secondJob:
    name: Second Job
    needs: firstJob
    runs-on: ubuntu-latest
    steps:
      - run: echo test

  # ...

e.g.

スクリーンショット

キャンセル中

cancelling

キャンセルされたジョブ

cancelled

結果

result

Outputs

name description e.g.
ids キャンセルされた Run ID 1234,2345

Author

GitHub (Technote)
Blog