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
|
name: Docker Hub description
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
|
#branches: [master]
|
||||||
paths:
|
paths:
|
||||||
- README.md
|
- README.md
|
||||||
- .github/workflows/dockerhub-description.yml
|
- .github/workflows/dockerhub-description.yml
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
|
#branches: [master]
|
||||||
paths:
|
paths:
|
||||||
- README.md
|
- README.md
|
||||||
- .github/workflows/dockerhub-description.yml
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
|||||||
17
.github/workflows/misspell.yml
vendored
17
.github/workflows/misspell.yml
vendored
@@ -1,5 +1,9 @@
|
|||||||
name: Misspells
|
name: Misspells
|
||||||
on: [pull_request,push]
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
jobs:
|
jobs:
|
||||||
misspell:
|
misspell:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -11,10 +15,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
locale: "US"
|
locale: "US"
|
||||||
|
level: error
|
||||||
- name: sobolevn fixer
|
- name: sobolevn fixer
|
||||||
uses: sobolevn/misspell-fixer-action@master
|
uses: sobolevn/misspell-fixer-action@master
|
||||||
- uses: peter-evans/create-pull-request@v2.4.4
|
#- uses: peter-evans/create-pull-request@v2.4.4
|
||||||
with:
|
# with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
# token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
commit-message: 'Typos fixes'
|
# commit-message: 'Typos fixes'
|
||||||
title: "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
|
name: Security scan of Docker image
|
||||||
on:
|
on:
|
||||||
push:
|
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:
|
schedule:
|
||||||
- cron: '0 9 * * *'
|
- cron: '0 9 * * *'
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
Reference in New Issue
Block a user