Merge pull request #144015 from NixOS/revert-backport-bump

Revert backport bump

authored by

Domen Kožar and committed by
GitHub
322c20a5 0d714e1d

+6 -1
+6 -1
.github/workflows/backport.yml
··· 10 steps: 11 - uses: actions/checkout@v2 12 with: 13 ref: ${{ github.event.pull_request.head.sha }} 14 - name: Create backport PRs 15 - uses: zeebe-io/backport-action@v0.0.7 16 with: 17 # Config README: https://github.com/zeebe-io/backport-action#backport-action 18 github_token: ${{ secrets.GITHUB_TOKEN }} 19 github_workspace: ${{ github.workspace }} 20 pull_description: |- 21 Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}. 22
··· 10 steps: 11 - uses: actions/checkout@v2 12 with: 13 + # required to find all branches 14 + fetch-depth: 0 15 ref: ${{ github.event.pull_request.head.sha }} 16 - name: Create backport PRs 17 + # should be kept in sync with `version` 18 + uses: zeebe-io/backport-action@v0.0.5 19 with: 20 # Config README: https://github.com/zeebe-io/backport-action#backport-action 21 github_token: ${{ secrets.GITHUB_TOKEN }} 22 github_workspace: ${{ github.workspace }} 23 + # should be kept in sync with `uses` 24 + version: v0.0.5 25 pull_description: |- 26 Bot-based backport to `${target_branch}`, triggered by a label in #${pull_number}. 27