docs: add instruction to remove unwanted attributes from systemd logs #2731
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: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-22.04 | |
name: Backport | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.BACKPORT_APP_ID }} | |
private_key: ${{ secrets.BACKPORT_PRIVATE_KEY }} | |
# Optional (defaults to the current repository). | |
# repository: owner/repo | |
- name: Backport | |
uses: tibdex/backport@v2 | |
with: | |
github_token: ${{ steps.generate_token.outputs.token }} |