Revise workflows (#99)
This commit is contained in:
8
.github/workflows/dockerhub-description.yml
vendored
8
.github/workflows/dockerhub-description.yml
vendored
@@ -1,12 +1,16 @@
|
||||
name: Docker Hub description
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
branches-ignore:
|
||||
- '**'
|
||||
#branches: [master]
|
||||
paths:
|
||||
- README.md
|
||||
- .github/workflows/dockerhub-description.yml
|
||||
pull_request:
|
||||
branches: [master]
|
||||
branches-ignore:
|
||||
- '**'
|
||||
#branches: [master]
|
||||
paths:
|
||||
- README.md
|
||||
- .github/workflows/dockerhub-description.yml
|
||||
|
||||
17
.github/workflows/misspell.yml
vendored
17
.github/workflows/misspell.yml
vendored
@@ -1,5 +1,9 @@
|
||||
name: Misspells
|
||||
on: [pull_request,push]
|
||||
on:
|
||||
pull_request:
|
||||
branches: [master]
|
||||
push:
|
||||
branches: [master]
|
||||
jobs:
|
||||
misspell:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -11,10 +15,11 @@ jobs:
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
locale: "US"
|
||||
level: error
|
||||
- name: sobolevn fixer
|
||||
uses: sobolevn/misspell-fixer-action@master
|
||||
- uses: peter-evans/create-pull-request@v2.4.4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit-message: 'Typos fixes'
|
||||
title: "Typos fixes"
|
||||
#- uses: peter-evans/create-pull-request@v2.4.4
|
||||
# with:
|
||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# commit-message: 'Typos fixes'
|
||||
# title: "Typos fixes"
|
||||
|
||||
14
.github/workflows/security.yml
vendored
14
.github/workflows/security.yml
vendored
@@ -1,6 +1,20 @@
|
||||
name: Security scan of Docker image
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
paths-ignore:
|
||||
- .github/workflows/buildx-release.yml
|
||||
- .github/workflows/dockerhub-description.yml
|
||||
- .github/workflows/greetings.yml
|
||||
- .github/workflows/labels.yml
|
||||
- .github/workflows/misspell.yml
|
||||
- .github/workflows/security.yml
|
||||
- .dockerignore
|
||||
- .gitignore
|
||||
- docker-compose.yml
|
||||
- LICENSE
|
||||
- README.md
|
||||
- title.svg
|
||||
schedule:
|
||||
- cron: '0 9 * * *'
|
||||
jobs:
|
||||
|
||||
Reference in New Issue
Block a user