Home > OS >  how to run GitHub Action after outage?
how to run GitHub Action after outage?

Time:03-28

As you may (or may not) know yesterday was a major incident of GitHub's services: https://www.githubstatus.com/incidents/tyc8wpsgr2r8.

Unfortunately I published a release during that time and the action responsible for building and publishing the code didn't trigger.

For actions which executed at least once I have an option to "Re-run workflow" - but how can I proceed with an action which didn't even trigger - I can not see it anywhere whatsoever?

I think the last resort would be to just make another release, remove the problematic one etc. but I'd like to avoid that.

The workflow file:

name: Node.js CI

on:
  push:
    branches: [master]
  release:
    types: [published]
  pull_request:
    branches: [master]
jobs:
  test:
    name: Test Node.js v${{ matrix.node-version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version:
          - 16
    steps:
      - uses: actions/checkout@v2
      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v2
        with:
          node-version: ${{ matrix.node-version }}
      - run: npm install --production=false --no-package-lock
      - name: Lint            
  • Related