Refactor change policy API and the policy in managed index to be non-null #788
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 | |
jobs: | |
backport: | |
runs-on: ubuntu-latest | |
if: > | |
github.event.pull_request.merged | |
&& ( | |
github.event.action == 'closed' | |
|| ( | |
github.event.action == 'labeled' | |
&& contains(github.event.label.name, 'backport') | |
) | |
) | |
permissions: | |
contents: write | |
pull-requests: write | |
name: Backport | |
steps: | |
- name: GitHub App token | |
id: github_app_token | |
uses: tibdex/[email protected] | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.APP_PRIVATE_KEY }} | |
installation_id: 22958780 | |
- name: Backport | |
uses: VachaShah/[email protected] | |
with: | |
github_token: ${{ steps.github_app_token.outputs.token }} | |
head_template: backport/backport-<%= number %>-to-<%= base %> | |
labels_template: "<%= JSON.stringify([...labels, 'autocut']) %>" | |
failure_labels: "failed backport" |