Compare commits
9 Commits
alex-patch
...
8b42312aa7
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b42312aa7 | |||
| 0868f9e638 | |||
| 283d992ed9 | |||
| aaf3bd6aa9 | |||
| d4bd111233 | |||
| 9752597a68 | |||
| e8f5874712 | |||
| 5d3e06c0ac | |||
| bee27b6acb |
@@ -1,19 +0,0 @@
|
||||
name: Simple Deploy Pipeline
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
print-message:
|
||||
name: Print Welcome Message
|
||||
runs-on: ubuntu-latest
|
||||
if: github.ref == 'refs/heads/main'
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Print message
|
||||
run: echo "Красота во всем"
|
||||
13
.gitea/workflows/merge_prod.yml
Normal file
13
.gitea/workflows/merge_prod.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
name: Merge Success Notification
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
notify-on-merge:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Print merge success
|
||||
run: echo "Удачное слияние в ветку main"
|
||||
@@ -1,9 +0,0 @@
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "Раннер работает На другой ветке!"
|
||||
Reference in New Issue
Block a user