shellhub-agent: Update version 0.25.1 -> 0.26.0 #57
Workflow file for this run
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
| name: Backport merged pull requests | |
| on: | |
| pull_request_target: | |
| types: [closed, labeled] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| backport: | |
| name: Create backport PRs | |
| runs-on: ubuntu-latest | |
| # Run on merged PRs that carry a 'backport <branch>' label, whether the | |
| # label was added before the merge or afterwards. | |
| if: github.event.pull_request.merged | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: korthout/backport-action@v4 |