Code Monkey home page Code Monkey logo

action-workflow_run-status's Introduction

action-workflow_run-status

workflow_run status demo

This action updates commit status of a original commit which triggerred workflow_run workflow.

Workflow triggered by workflow_run event runs on the default branch for the repository, so it's hard to track the status by default from the original commit even though it triggered the workflow. This action simply resolve this issue by updating commit status. You can check the status of workflow_run job and jump to the associated workflow page from the attached commit status.

Usage

Just add haya14busa/action-workflow_run-status@v1 as a first step of workflow jobs triggered by workflow_run event.

name: 'test_post'
on:
  workflow_run:
    workflows: ["test"]
    types:
      - completed

jobs:
  post-test-success:
    runs-on: ubuntu-latest
    steps:
      - uses: haya14busa/action-workflow_run-status@v1
      - uses: actions/checkout@v3
      - run: exit 0

  post-test-failure:
    runs-on: ubuntu-latest
    steps:
      - uses: haya14busa/action-workflow_run-status@v1
      - uses: actions/checkout@v3
      - run: exit 1

if your jobs using matrix you can send it's name for display like:

name: 'test_post'
on:
  workflow_run:
    workflows: ["test"]
    types:
      - completed
jobs:
  build:
    if: github.event.workflow_run.conclusion == 'success'
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node_group:
          - "1"
          - "2"
    steps:
      - uses: actions/checkout@v3
      - uses: ./
        with:
        matrix_name: ${{ matrix.node_group }}
      - run: exit 0

action-workflow_run-status's People

Contributors

dependabot[bot] avatar haya14busa avatar marocchino avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

sumengwang

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.