2 Commits

Author SHA1 Message Date
ac0de60ec0 cretae 2025-11-25 15:36:59 +03:00
2e2bd2dc1f com 2025-11-25 15:10:34 +03:00
2 changed files with 29 additions and 4 deletions

View File

@@ -1,10 +1,15 @@
name: "Example action" name: "Example action"
run-name: "example action" run-name: "Start example action"
on: on:
push: # push:
tags: # tags:
- v*.*.* # - v*.*.*
delete:
tags:
- v*.*.*
jobs: jobs:
second-job: second-job:

View 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) }}"