Fix token count display in PlaceNode inside SDCPNView #2845
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: Dismiss stale pull request approvals | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| merge_group: | |
| permissions: | |
| actions: read | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| dismiss_stale_approvals: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Dismiss stale pull request approvals | |
| if: github.event_name == 'pull_request' | |
| # see: https://github.com/withgraphite/dismiss-stale-approvals/pull/8#issuecomment-3386592574 | |
| uses: turnage/dismiss-stale-approvals@ff3fc67f2978497c420e446f704b9502dd911fd8 # fork | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |