From 22e06780ddc792b9e824abcb40a70ae3737afb9b Mon Sep 17 00:00:00 2001 From: Jaco Date: Fri, 4 Mar 2022 08:35:20 +0100 Subject: [PATCH] Adjust auto actions (#1209) --- .github/workflows/{approve.yml => auto-approve.yml} | 4 ++-- .github/workflows/{merge.yml => auto-merge.yml} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{approve.yml => auto-approve.yml} (91%) rename .github/workflows/{merge.yml => auto-merge.yml} (87%) diff --git a/.github/workflows/approve.yml b/.github/workflows/auto-approve.yml similarity index 91% rename from .github/workflows/approve.yml rename to .github/workflows/auto-approve.yml index 585913162..dee94fc35 100644 --- a/.github/workflows/approve.yml +++ b/.github/workflows/auto-approve.yml @@ -1,4 +1,4 @@ -name: PR +name: bot on: pull_request: @@ -12,5 +12,5 @@ jobs: - uses: jacogr/action-approve@master with: authors: jacogr - labels: automerge + labels: -auto token: ${{ secrets.GH_PAT_BOT }} diff --git a/.github/workflows/merge.yml b/.github/workflows/auto-merge.yml similarity index 87% rename from .github/workflows/merge.yml rename to .github/workflows/auto-merge.yml index a90e96710..c07e4870d 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/auto-merge.yml @@ -1,4 +1,4 @@ -name: PR +name: bot on: pull_request: @@ -11,6 +11,6 @@ jobs: - uses: jacogr/action-merge@master with: checks: build,lint,test - labels: automerge + labels: -auto strategy: squash token: ${{ secrets.GH_PAT_BOT }}