mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
tools/github actions: set workflow names
- https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#name
This commit is contained in:
parent
083b9f0605
commit
986e2dde55
4 changed files with 8 additions and 0 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -1,3 +1,5 @@
|
|||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
|
|
|||
2
.github/workflows/daily-update-metadata.yml
vendored
2
.github/workflows/daily-update-metadata.yml
vendored
|
|
@ -1,3 +1,5 @@
|
|||
name: update metadata
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '22 22 * * *'
|
||||
|
|
|
|||
2
.github/workflows/daily-url-check.yml
vendored
2
.github/workflows/daily-url-check.yml
vendored
|
|
@ -1,3 +1,5 @@
|
|||
name: link checks
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '22 22 * * *'
|
||||
|
|
|
|||
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
|
|
@ -1,3 +1,5 @@
|
|||
name: pull request
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
|
|
|||
Loading…
Reference in a new issue