Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ jobs:
steps:
- name: Enable auto-merge
run: gh pr merge --auto --rebase --repo "${{ github.repository }}" "${{ github.event.pull_request.number }}"
- name: Approve dependabot PR
env:
GH_TOKEN: ${{ secrets.BOT_GH_TOKEN }}
run: gh pr review --approve --repo "${{ github.repository }}" "${{ github.event.pull_request.number }}"
3 changes: 3 additions & 0 deletions .github/workflows/fork-integration-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
-f content=rocket

- name: Trigger integration tests
env:
# need bot token, otherwise the IT workflows won't trigger fork-integration-status-reporter.yml
GH_TOKEN: ${{ secrets.BOT_GH_TOKEN }}
run: |
# run all integration test workflows in context of main branch, passing the PR head SHA as an input
for workflow in s3-integration.yml gcs-integration.yml alioss-integration.yml azurebs-integration.yml dav-integration.yml; do
Expand Down
Loading