mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
workflow names style fix
This commit is contained in:
parent
257147e6e1
commit
99cfa3a0de
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
|
@ -1,5 +1,5 @@
|
|||
name: cd
|
||||
run-name: cd `${{ github.event.head_commit.message }}`
|
||||
run-name: 'cd: ${{ github.event.head_commit.message }}'
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -1,5 +1,5 @@
|
|||
name: ci
|
||||
run-name: ci `${{ github.event.pull_request.title }}`
|
||||
run-name: 'ci: ${{ github.event.pull_request.title }}'
|
||||
|
||||
on: pull_request
|
||||
|
||||
|
|
2
.github/workflows/cleanup.yml
vendored
2
.github/workflows/cleanup.yml
vendored
|
@ -1,7 +1,7 @@
|
|||
# cleans up our S3 staging area if a PR is closed without merge
|
||||
|
||||
name: teaxyz s3 cleanup
|
||||
run-name: cleanup `${{ github.event.pull_request.title }}`
|
||||
run-name: 'cleanup: ${{ github.event.pull_request.title }}'
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
|
Loading…
Reference in a new issue