chore(backend): support symbolication of app exit trace for ANRs #1598
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: Changelog | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| jobs: | |
| changelog: | |
| name: Generate changelog | |
| if: ${{ github.event.pull_request.merged }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.CHANGELOG_PUSH_TOKEN }} | |
| - name: Generate changelog | |
| uses: orhun/git-cliff-action@v4 | |
| id: git-cliff | |
| with: | |
| config: cliff.toml | |
| args: --verbose | |
| env: | |
| OUTPUT: CHANGELOG.md | |
| GITHUB_REPO: ${{ github.repository }} | |
| - name: Print the changelog | |
| run: cat "${{ steps.git-cliff.outputs.changelog }}" | |
| - name: Commit the changelog | |
| run: | | |
| git checkout main | |
| git config user.name 'github-actions[bot]' | |
| git config user.email 'github-actions[bot]@users.noreply.github.com' | |
| set +e | |
| git add CHANGELOG.md | |
| git commit -m "ci: update changelog" | |
| git push |