forked from sirius/actions-laba-1
Compare commits
4 Commits
v1.0.0
...
ebf8e91ca1
| Author | SHA1 | Date | |
|---|---|---|---|
| ebf8e91ca1 | |||
| 0a31d7b7ae | |||
| ac0de60ec0 | |||
| 2e2bd2dc1f |
@@ -1,11 +1,12 @@
|
||||
name: "Example action"
|
||||
run-name: "example action"
|
||||
run-name: "Start example action"
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*.*.*
|
||||
|
||||
|
||||
jobs:
|
||||
second-job:
|
||||
runs-on: sirius # docker, sirius или golang
|
||||
|
||||
@@ -4,9 +4,8 @@ run-name: "Check Job condition"
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- closed
|
||||
- labeled
|
||||
- opened
|
||||
- unlabeled
|
||||
|
||||
jobs:
|
||||
check-condition:
|
||||
|
||||
20
.gitea/workflows/example-new.yaml
Normal file
20
.gitea/workflows/example-new.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: "Example condition"
|
||||
run-name: "Check Job condition"
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- labeled
|
||||
- opened
|
||||
- unlabeled
|
||||
|
||||
jobs:
|
||||
check-condition:
|
||||
runs-on: sirius # docker, sirius или golang
|
||||
# if: contains(github.event.issue.labels.*.name, 'bug')
|
||||
|
||||
steps:
|
||||
# Выводим текстовое сообщение
|
||||
- name: Echo test
|
||||
# if: contains(github.event.issue.labels.*.name, 'bug')
|
||||
run: echo "${{ toJson(github.event.issue) }}"
|
||||
Reference in New Issue
Block a user