mirror of
https://github.com/batonogov/learn-devops.git
synced 2025-11-29 00:33:02 +00:00
Add auto pr action (#1)
* Add auto pr action * Add permissions --------- Co-authored-by: Fedor Batonogov <f.batonogov@yandex.ru>
This commit is contained in:
committed by
GitHub
parent
1a70b84002
commit
d6e1b85518
19
.github/workflows/AUTO_PR.yml
vendored
Normal file
19
.github/workflows/AUTO_PR.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
name: AURO PR
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "*"
|
||||||
|
- "!main"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
pull-request:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4.1.1
|
||||||
|
- name: Auto Pull Request
|
||||||
|
uses: diillson/auto-pull-request@v1.0.1
|
||||||
|
with:
|
||||||
|
destination_branch: main
|
||||||
Reference in New Issue
Block a user