Delete .github/workflows directory

This commit is contained in:
2021-04-16 17:21:24 +02:00
committed by GitHub
parent eb172c137d
commit 1aa25ed5b8

View File

@@ -1,50 +0,0 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the gh-pages branch
push:
branches: [ gh-pages ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
---
- name: HTML5 Validator
# You may pin to the exact commit or the version.
# uses: Cyb3r-Jak3/html5validator-action@c8012a8df62da54b8babd683a38e0dd3f49fa3ae
uses: Cyb3r-Jak3/html5validator-action@v0.5
on:
push:
branches:
- gh-pages
workflow_dispatch:
with:
# Path of the files to test
root: # optional
# Path of config file
config: # optional
# Extra arguments to test with
extra: # optional
# Format for logging output. Valid values: gnu,xml,json,text
format: # optional
# Logging Level. Valid values: DEBUG, INFO, WARNING. Default: WARNING
log_level: # optional, default is WARNING
# Checks css as well
css: # optional
# Files or directories to ignore in checking
ignore: # optional
# Flag that increase verbose output only used for troubleshooting the action.
action_debug: # optional
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
jobs:
my_job:
name: stuff
runs-on: ubuntu-18.04