Skip to content

Commit

Permalink
Add dummy workflow to bypass required checks
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Feb 9, 2024
1 parent c104664 commit b92564c
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/skipped.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Workaround to skip the "required" check when jobs are skipped
name: '*CI Skipped*'

on:
pull_request:
branches: [ '*' ]
paths:
- '.github/**'
- 'docs/**'
- '.all-contributorsrc'
- 'README.md'
- 'LICENSE'
- 'metrics/**'

jobs:
compile-native:
name: Build native libraries
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

build:
name: Build project
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

smoke:
name: Start and stop the node
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

test:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

spectests:
name: Run spec-tests
strategy:
matrix:
config: ["minimal", "general", "mainnet"]
runs-on: ubuntu-22.04
steps:
- name: Skipped
run: echo "Skipped"

0 comments on commit b92564c

Please sign in to comment.