diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index d361ac4171..1758732a12 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -1,4 +1,4 @@ -name: 'Auto Assign' +name: 'auto-assign' on: pull_request jobs: diff --git a/.github/workflows/label.yml b/.github/workflows/auto-label.yml similarity index 97% rename from .github/workflows/label.yml rename to .github/workflows/auto-label.yml index a5f713344e..e8a3a293e9 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/auto-label.yml @@ -1,4 +1,4 @@ -name: Labeler +name: auto-label on: [pull_request] jobs: diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 2cf3355cf8..4dc7de6535 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -1,4 +1,4 @@ -name: Auto Updater +name: 'auto-update' # Enable `pull_request` for debugging #on: [pull_request] @@ -16,7 +16,7 @@ jobs: - name: Update packages shell: bash env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + GITHUB_TOKEN: "${{ secrets.GITHUB_BOT_TOKEN }}" id: vars run: | make -C vendor auto-update RATE_LIMIT=0.5 @@ -26,7 +26,7 @@ jobs: - name: Create Pull Request uses: cloudposse/actions/github/create-pull-request@0.4.0 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_BOT_TOKEN }} COMMIT_MESSAGE: update packages PULL_REQUEST_TITLE: Automated Package Updates PULL_REQUEST_BODY: This is an auto-generated PR with dependency updates. diff --git a/.github/workflows/branch-cleanup.yml b/.github/workflows/branch-cleanup.yml deleted file mode 100644 index 61a9f83456..0000000000 --- a/.github/workflows/branch-cleanup.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: branch-cleanup -on: - pull_request: - branches: - - master -jobs: - cleanup-branch: - name: auto delete branch on merge - runs-on: ubuntu-latest - steps: - - uses: cloudposse/actions/github/branch-cleanup@0.3.0 - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - NO_BRANCH_DELETED_EXIT_CODE: 0