diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 96c30258b6..4257c37a33 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -1,13 +1,17 @@ -name: auto-merge +name: automerge on: pull_request_target: jobs: - auto-merge: + automerge: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: ahmadnassri/action-dependabot-auto-merge@v2 - with: - target: minor - github-token: ${{ secrets.AUTOMERGE }} + + - name: Print the name of the actor + run: | + echo "The name of the actor is [${{ github.actor }}]" + - name: automerge + uses: "pascalgn/automerge-action@v0.14.3" + env: + GITHUB_TOKEN: "${{ secrets.AUTOMERGE }}" + MERGE_LABELS: "dependencies"