[Backport release_3.40] Update label engine options and labels export option #7019
Workflow file for this run
This file contains 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 | |
permissions: | |
contents: read | |
jobs: | |
backport: | |
env: | |
BACKPORT_TOKEN: ${{ secrets.BACKPORT_TOKEN }} | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: Backport | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
github.com:443 | |
- name: Backport Bot | |
id: backport | |
uses: m-kuhn/backport@7f3cab83e4b3b26aefcffda21851c3dc3d389f45 #v1.2.7 | |
with: | |
github_token: ${{ env.BACKPORT_TOKEN }} |