chore(build): upgrade Go to v1.24 + replace golang.org/x/exp/slices
usage with standard lib's
#1165
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 | |
on: | |
pull_request_target: | |
types: | |
- closed | |
- labeled | |
jobs: | |
backport: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
name: Backport | |
steps: | |
- name: GitHub App token | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Backport | |
uses: VachaShah/[email protected] | |
with: | |
github_token: ${{ steps.app-token.outputs.token }} | |
branch_name: backport/backport-${{ github.event.number }} |