chore(deps): bump ioBroker/testing-action-check from 1 to 2 #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Workflow for auto-merging ioBroker-Bot PRs | |
| # This workflow uses the action-automerge-iobroker-bot action to automatically merge | |
| # PRs created by ioBroker-Bot if all required checks pass successfully. | |
| name: Auto-Merge ioBroker-Bot PRs | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, edited] | |
| jobs: | |
| auto-merge: | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'ioBroker-Bot' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Auto-merge ioBroker-Bot PRs | |
| uses: iobroker-bot-orga/action-automerge-iobroker-bot@v1 | |
| with: | |
| github-token: ${{ secrets.AUTO_MERGE_TOKEN_IOBROKER_BOT }} | |
| pull-request-ref: ${{ github.event.pull_request.number }} |