From d6e1b85518a42a20af8dfe1effa4ac96de4fd180 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 13:45:37 +0300 Subject: [PATCH] Add auto pr action (#1) * Add auto pr action * Add permissions --------- Co-authored-by: Fedor Batonogov --- .github/workflows/AUTO_PR.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/AUTO_PR.yml diff --git a/.github/workflows/AUTO_PR.yml b/.github/workflows/AUTO_PR.yml new file mode 100644 index 0000000..6f8a646 --- /dev/null +++ b/.github/workflows/AUTO_PR.yml @@ -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