diff --git a/.gitea/workflows/example-condition.yaml b/.gitea/workflows/example-condition.yaml index 9fa904d..e5a7f81 100644 --- a/.gitea/workflows/example-condition.yaml +++ b/.gitea/workflows/example-condition.yaml @@ -14,7 +14,12 @@ jobs: # if: contains(github.event.issue.labels.*.name, 'bug') steps: + # Поздароваемся + - name: Hello + if: github.event.issue.user.login == 'alex' + run: echo "Hello, Alex!!!" + # Выводим текстовое сообщение - name: Echo test - # if: contains(github.event.issue.labels.*.name, 'bug') + if: contains(github.event.issue.labels.*.name, 'bug') run: echo "${{ toJson(github.event.issue) }}" diff --git a/issue.json b/issue.json new file mode 100644 index 0000000..5fd680c --- /dev/null +++ b/issue.json @@ -0,0 +1 @@ +hjkdshf ahsldf \ No newline at end of file