Compare commits
7 Commits
main
...
ebf8e91ca1
| Author | SHA1 | Date | |
|---|---|---|---|
| ebf8e91ca1 | |||
| 0a31d7b7ae | |||
| ac0de60ec0 | |||
| 2e2bd2dc1f | |||
| ba1f9da7cb | |||
| cb1cc8137e | |||
| bf4b910da9 |
@@ -6,15 +6,16 @@ on:
|
||||
tags:
|
||||
- v*.*.*
|
||||
|
||||
|
||||
jobs:
|
||||
second-job:
|
||||
runs-on: docker # docker, sirius или golang
|
||||
runs-on: sirius # docker, sirius или golang
|
||||
steps:
|
||||
- run: |
|
||||
if [ ${{ gitea.actor }} == 'alex' ]; then
|
||||
if [ ${{ gitea.actor }} == 'VlaDislava28' ]; then
|
||||
echo "Hello, ${{ gitea.actor }}"
|
||||
else
|
||||
echo "Hello, student"
|
||||
echo "Hello, Vlada"
|
||||
fi
|
||||
|
||||
# Клонируем репозиторий для Runnera
|
||||
|
||||
@@ -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